Models
Types

Models

Activity

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
profile Profile?
  • -
No -
profileId String?
  • -
No -
month Int?
  • -
No -
year Int?
  • -
No -
day Int?
  • -
No -
gamesPlayed Int?
  • -
No -

Operations

findUnique

Find zero or one Activity

// Get one Activity
const activity = await prisma.activity.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ActivityWhereUniqueInput Yes

Output

Type: Activity
Required: No
List: No

findFirst

Find first Activity

// Get one Activity
const activity = await prisma.activity.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ActivityWhereInput No
orderBy ActivityOrderByWithRelationInput[] | ActivityOrderByWithRelationInput No
cursor ActivityWhereUniqueInput No
take Int No
skip Int No
distinct ActivityScalarFieldEnum[] No

Output

Type: Activity
Required: No
List: No

findMany

Find zero or more Activity

// Get all Activity
const Activity = await prisma.activity.findMany()
// Get first 10 Activity
const Activity = await prisma.activity.findMany({ take: 10 })

Input

Name Type Required
where ActivityWhereInput No
orderBy ActivityOrderByWithRelationInput[] | ActivityOrderByWithRelationInput No
cursor ActivityWhereUniqueInput No
take Int No
skip Int No
distinct ActivityScalarFieldEnum[] No

Output

Type: Activity
Required: Yes
List: Yes

create

Create one Activity

// Create one Activity
const Activity = await prisma.activity.create({
  data: {
    // ... data to create a Activity
  }
})

Input

Name Type Required
data ActivityCreateInput | ActivityUncheckedCreateInput Yes

Output

Type: Activity
Required: Yes
List: No

delete

Delete one Activity

// Delete one Activity
const Activity = await prisma.activity.delete({
  where: {
    // ... filter to delete one Activity
  }
})

Input

Name Type Required
where ActivityWhereUniqueInput Yes

Output

Type: Activity
Required: No
List: No

update

Update one Activity

// Update one Activity
const activity = await prisma.activity.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ActivityUpdateInput | ActivityUncheckedUpdateInput Yes
where ActivityWhereUniqueInput Yes

Output

Type: Activity
Required: No
List: No

deleteMany

Delete zero or more Activity

// Delete a few Activity
const { count } = await prisma.activity.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ActivityWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Activity

const { count } = await prisma.activity.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ActivityUpdateManyMutationInput | ActivityUncheckedUpdateManyInput Yes
where ActivityWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Activity

// Update or create a Activity
const activity = await prisma.activity.upsert({
  create: {
    // ... data to create a Activity
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Activity we want to update
  }
})

Input

Name Type Required
where ActivityWhereUniqueInput Yes
create ActivityCreateInput | ActivityUncheckedCreateInput Yes
update ActivityUpdateInput | ActivityUncheckedUpdateInput Yes

Output

Type: Activity
Required: Yes
List: No

ChampionWinrate

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
profile Profile?
  • -
No -
profileId String?
  • -
No -
champion String
  • @default()
Yes -
wins Int?
  • -
No -
games Int?
  • -
No -
spell1Casts Int?
  • -
No -
spell2Casts Int?
  • -
No -
spell3Casts Int?
  • -
No -
spell4Casts Int?
  • -
No -

Operations

findUnique

Find zero or one ChampionWinrate

// Get one ChampionWinrate
const championWinrate = await prisma.championWinrate.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ChampionWinrateWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first ChampionWinrate

// Get one ChampionWinrate
const championWinrate = await prisma.championWinrate.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ChampionWinrateWhereInput No
orderBy ChampionWinrateOrderByWithRelationInput[] | ChampionWinrateOrderByWithRelationInput No
cursor ChampionWinrateWhereUniqueInput No
take Int No
skip Int No
distinct ChampionWinrateScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more ChampionWinrate

// Get all ChampionWinrate
const ChampionWinrate = await prisma.championWinrate.findMany()
// Get first 10 ChampionWinrate
const ChampionWinrate = await prisma.championWinrate.findMany({ take: 10 })

Input

Name Type Required
where ChampionWinrateWhereInput No
orderBy ChampionWinrateOrderByWithRelationInput[] | ChampionWinrateOrderByWithRelationInput No
cursor ChampionWinrateWhereUniqueInput No
take Int No
skip Int No
distinct ChampionWinrateScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one ChampionWinrate

// Create one ChampionWinrate
const ChampionWinrate = await prisma.championWinrate.create({
  data: {
    // ... data to create a ChampionWinrate
  }
})

Input

Name Type Required
data ChampionWinrateCreateInput | ChampionWinrateUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one ChampionWinrate

// Delete one ChampionWinrate
const ChampionWinrate = await prisma.championWinrate.delete({
  where: {
    // ... filter to delete one ChampionWinrate
  }
})

Input

Name Type Required
where ChampionWinrateWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one ChampionWinrate

// Update one ChampionWinrate
const championWinrate = await prisma.championWinrate.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ChampionWinrateUpdateInput | ChampionWinrateUncheckedUpdateInput Yes
where ChampionWinrateWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more ChampionWinrate

// Delete a few ChampionWinrate
const { count } = await prisma.championWinrate.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ChampionWinrateWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one ChampionWinrate

const { count } = await prisma.championWinrate.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ChampionWinrateUpdateManyMutationInput | ChampionWinrateUncheckedUpdateManyInput Yes
where ChampionWinrateWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one ChampionWinrate

// Update or create a ChampionWinrate
const championWinrate = await prisma.championWinrate.upsert({
  create: {
    // ... data to create a ChampionWinrate
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the ChampionWinrate we want to update
  }
})

Input

Name Type Required
where ChampionWinrateWhereUniqueInput Yes
create ChampionWinrateCreateInput | ChampionWinrateUncheckedCreateInput Yes
update ChampionWinrateUpdateInput | ChampionWinrateUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Duo

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
profile Profile?
  • -
No -
profileId String?
  • -
No -
name String
  • @default()
Yes -
wins Int?
  • -
No -
losses Int?
  • -
No -
winrate String
  • @default()
Yes -

Operations

findUnique

Find zero or one Duo

// Get one Duo
const duo = await prisma.duo.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where DuoWhereUniqueInput Yes

Output

Type: Duo
Required: No
List: No

findFirst

Find first Duo

// Get one Duo
const duo = await prisma.duo.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where DuoWhereInput No
orderBy DuoOrderByWithRelationInput[] | DuoOrderByWithRelationInput No
cursor DuoWhereUniqueInput No
take Int No
skip Int No
distinct DuoScalarFieldEnum[] No

Output

Type: Duo
Required: No
List: No

findMany

Find zero or more Duo

// Get all Duo
const Duo = await prisma.duo.findMany()
// Get first 10 Duo
const Duo = await prisma.duo.findMany({ take: 10 })

Input

Name Type Required
where DuoWhereInput No
orderBy DuoOrderByWithRelationInput[] | DuoOrderByWithRelationInput No
cursor DuoWhereUniqueInput No
take Int No
skip Int No
distinct DuoScalarFieldEnum[] No

Output

Type: Duo
Required: Yes
List: Yes

create

Create one Duo

// Create one Duo
const Duo = await prisma.duo.create({
  data: {
    // ... data to create a Duo
  }
})

Input

Name Type Required
data DuoCreateInput | DuoUncheckedCreateInput Yes

Output

Type: Duo
Required: Yes
List: No

delete

Delete one Duo

// Delete one Duo
const Duo = await prisma.duo.delete({
  where: {
    // ... filter to delete one Duo
  }
})

Input

Name Type Required
where DuoWhereUniqueInput Yes

Output

Type: Duo
Required: No
List: No

update

Update one Duo

// Update one Duo
const duo = await prisma.duo.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data DuoUpdateInput | DuoUncheckedUpdateInput Yes
where DuoWhereUniqueInput Yes

Output

Type: Duo
Required: No
List: No

deleteMany

Delete zero or more Duo

// Delete a few Duo
const { count } = await prisma.duo.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where DuoWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Duo

const { count } = await prisma.duo.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data DuoUpdateManyMutationInput | DuoUncheckedUpdateManyInput Yes
where DuoWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Duo

// Update or create a Duo
const duo = await prisma.duo.upsert({
  create: {
    // ... data to create a Duo
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Duo we want to update
  }
})

Input

Name Type Required
where DuoWhereUniqueInput Yes
create DuoCreateInput | DuoUncheckedCreateInput Yes
update DuoUpdateInput | DuoUncheckedUpdateInput Yes

Output

Type: Duo
Required: Yes
List: No

Constant

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
startTime String
  • @default()
Yes -
currentSeason String
  • @default()
Yes -
seeding Boolean
  • @default(false)
Yes -

Operations

findUnique

Find zero or one Constant

// Get one Constant
const constant = await prisma.constant.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConstantWhereUniqueInput Yes

Output

Type: Constant
Required: No
List: No

findFirst

Find first Constant

// Get one Constant
const constant = await prisma.constant.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConstantWhereInput No
orderBy ConstantOrderByWithRelationInput[] | ConstantOrderByWithRelationInput No
cursor ConstantWhereUniqueInput No
take Int No
skip Int No
distinct ConstantScalarFieldEnum[] No

Output

Type: Constant
Required: No
List: No

findMany

Find zero or more Constant

// Get all Constant
const Constant = await prisma.constant.findMany()
// Get first 10 Constant
const Constant = await prisma.constant.findMany({ take: 10 })

Input

Name Type Required
where ConstantWhereInput No
orderBy ConstantOrderByWithRelationInput[] | ConstantOrderByWithRelationInput No
cursor ConstantWhereUniqueInput No
take Int No
skip Int No
distinct ConstantScalarFieldEnum[] No

Output

Type: Constant
Required: Yes
List: Yes

create

Create one Constant

// Create one Constant
const Constant = await prisma.constant.create({
  data: {
    // ... data to create a Constant
  }
})

Input

Name Type Required
data ConstantCreateInput | ConstantUncheckedCreateInput Yes

Output

Type: Constant
Required: Yes
List: No

delete

Delete one Constant

// Delete one Constant
const Constant = await prisma.constant.delete({
  where: {
    // ... filter to delete one Constant
  }
})

Input

Name Type Required
where ConstantWhereUniqueInput Yes

Output

Type: Constant
Required: No
List: No

update

Update one Constant

// Update one Constant
const constant = await prisma.constant.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ConstantUpdateInput | ConstantUncheckedUpdateInput Yes
where ConstantWhereUniqueInput Yes

Output

Type: Constant
Required: No
List: No

deleteMany

Delete zero or more Constant

// Delete a few Constant
const { count } = await prisma.constant.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConstantWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Constant

const { count } = await prisma.constant.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ConstantUpdateManyMutationInput | ConstantUncheckedUpdateManyInput Yes
where ConstantWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Constant

// Update or create a Constant
const constant = await prisma.constant.upsert({
  create: {
    // ... data to create a Constant
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Constant we want to update
  }
})

Input

Name Type Required
where ConstantWhereUniqueInput Yes
create ConstantCreateInput | ConstantUncheckedCreateInput Yes
update ConstantUpdateInput | ConstantUncheckedUpdateInput Yes

Output

Type: Constant
Required: Yes
List: No

Event

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
timestamp Int?
  • -
No -
position Position[]
  • -
Yes -

Operations

findUnique

Find zero or one Event

// Get one Event
const event = await prisma.event.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where EventWhereUniqueInput Yes

Output

Type: Event
Required: No
List: No

findFirst

Find first Event

// Get one Event
const event = await prisma.event.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where EventWhereInput No
orderBy EventOrderByWithRelationInput[] | EventOrderByWithRelationInput No
cursor EventWhereUniqueInput No
take Int No
skip Int No
distinct EventScalarFieldEnum[] No

Output

Type: Event
Required: No
List: No

findMany

Find zero or more Event

// Get all Event
const Event = await prisma.event.findMany()
// Get first 10 Event
const Event = await prisma.event.findMany({ take: 10 })

Input

Name Type Required
where EventWhereInput No
orderBy EventOrderByWithRelationInput[] | EventOrderByWithRelationInput No
cursor EventWhereUniqueInput No
take Int No
skip Int No
distinct EventScalarFieldEnum[] No

Output

Type: Event
Required: Yes
List: Yes

create

Create one Event

// Create one Event
const Event = await prisma.event.create({
  data: {
    // ... data to create a Event
  }
})

Input

Name Type Required
data EventCreateInput | EventUncheckedCreateInput Yes

Output

Type: Event
Required: Yes
List: No

delete

Delete one Event

// Delete one Event
const Event = await prisma.event.delete({
  where: {
    // ... filter to delete one Event
  }
})

Input

Name Type Required
where EventWhereUniqueInput Yes

Output

Type: Event
Required: No
List: No

update

Update one Event

// Update one Event
const event = await prisma.event.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data EventUpdateInput | EventUncheckedUpdateInput Yes
where EventWhereUniqueInput Yes

Output

Type: Event
Required: No
List: No

deleteMany

Delete zero or more Event

// Delete a few Event
const { count } = await prisma.event.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where EventWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Event

const { count } = await prisma.event.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data EventUpdateManyMutationInput | EventUncheckedUpdateManyInput Yes
where EventWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Event

// Update or create a Event
const event = await prisma.event.upsert({
  create: {
    // ... data to create a Event
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Event we want to update
  }
})

Input

Name Type Required
where EventWhereUniqueInput Yes
create EventCreateInput | EventUncheckedCreateInput Yes
update EventUpdateInput | EventUncheckedUpdateInput Yes

Output

Type: Event
Required: Yes
List: No

Game

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
matchId String
  • @unique
  • @default()
Yes -
gameId String
  • @default()
Yes -
gameCreation String
  • @default()
Yes -
gameStartTimestamp String
  • @default()
Yes -
gameEndTimestamp String
  • @default()
Yes -
duration Int?
  • -
No -
start String
  • @default()
Yes -
gameVersion String
  • @default()
Yes -
blueTeam Team?
  • -
No -
blueTeamId String?
  • -
No -
redTeam Team?
  • -
No -
redTeamId String?
  • -
No -
source Source[]
  • -
Yes -
tournament String
  • @default()
Yes -
gameInSeries Int?
  • -
No -
vod String
  • @default()
Yes -
platformId String
  • @default()
Yes -
from_PlayerEndOfGameStat_game PlayerEndOfGameStat[]
  • -
Yes -
from_Team_game Team[]
  • -
Yes -

Operations

findUnique

Find zero or one Game

// Get one Game
const game = await prisma.game.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where GameWhereUniqueInput Yes

Output

Type: Game
Required: No
List: No

findFirst

Find first Game

// Get one Game
const game = await prisma.game.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where GameWhereInput No
orderBy GameOrderByWithRelationInput[] | GameOrderByWithRelationInput No
cursor GameWhereUniqueInput No
take Int No
skip Int No
distinct GameScalarFieldEnum[] No

Output

Type: Game
Required: No
List: No

findMany

Find zero or more Game

// Get all Game
const Game = await prisma.game.findMany()
// Get first 10 Game
const Game = await prisma.game.findMany({ take: 10 })

Input

Name Type Required
where GameWhereInput No
orderBy GameOrderByWithRelationInput[] | GameOrderByWithRelationInput No
cursor GameWhereUniqueInput No
take Int No
skip Int No
distinct GameScalarFieldEnum[] No

Output

Type: Game
Required: Yes
List: Yes

create

Create one Game

// Create one Game
const Game = await prisma.game.create({
  data: {
    // ... data to create a Game
  }
})

Input

Name Type Required
data GameCreateInput | GameUncheckedCreateInput Yes

Output

Type: Game
Required: Yes
List: No

delete

Delete one Game

// Delete one Game
const Game = await prisma.game.delete({
  where: {
    // ... filter to delete one Game
  }
})

Input

Name Type Required
where GameWhereUniqueInput Yes

Output

Type: Game
Required: No
List: No

update

Update one Game

// Update one Game
const game = await prisma.game.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data GameUpdateInput | GameUncheckedUpdateInput Yes
where GameWhereUniqueInput Yes

Output

Type: Game
Required: No
List: No

deleteMany

Delete zero or more Game

// Delete a few Game
const { count } = await prisma.game.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where GameWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Game

const { count } = await prisma.game.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data GameUpdateManyMutationInput | GameUncheckedUpdateManyInput Yes
where GameWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Game

// Update or create a Game
const game = await prisma.game.upsert({
  create: {
    // ... data to create a Game
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Game we want to update
  }
})

Input

Name Type Required
where GameWhereUniqueInput Yes
create GameCreateInput | GameUncheckedCreateInput Yes
update GameUpdateInput | GameUncheckedUpdateInput Yes

Output

Type: Game
Required: Yes
List: No

Objective

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
team Team?
  • -
No -
teamId String?
  • -
No -
first Boolean
  • @default(false)
Yes -
kills Int?
  • -
No -
type String
  • @default()
Yes -

Operations

findUnique

Find zero or one Objective

// Get one Objective
const objective = await prisma.objective.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ObjectiveWhereUniqueInput Yes

Output

Type: Objective
Required: No
List: No

findFirst

Find first Objective

// Get one Objective
const objective = await prisma.objective.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ObjectiveWhereInput No
orderBy ObjectiveOrderByWithRelationInput[] | ObjectiveOrderByWithRelationInput No
cursor ObjectiveWhereUniqueInput No
take Int No
skip Int No
distinct ObjectiveScalarFieldEnum[] No

Output

Type: Objective
Required: No
List: No

findMany

Find zero or more Objective

// Get all Objective
const Objective = await prisma.objective.findMany()
// Get first 10 Objective
const Objective = await prisma.objective.findMany({ take: 10 })

Input

Name Type Required
where ObjectiveWhereInput No
orderBy ObjectiveOrderByWithRelationInput[] | ObjectiveOrderByWithRelationInput No
cursor ObjectiveWhereUniqueInput No
take Int No
skip Int No
distinct ObjectiveScalarFieldEnum[] No

Output

Type: Objective
Required: Yes
List: Yes

create

Create one Objective

// Create one Objective
const Objective = await prisma.objective.create({
  data: {
    // ... data to create a Objective
  }
})

Input

Name Type Required
data ObjectiveCreateInput | ObjectiveUncheckedCreateInput Yes

Output

Type: Objective
Required: Yes
List: No

delete

Delete one Objective

// Delete one Objective
const Objective = await prisma.objective.delete({
  where: {
    // ... filter to delete one Objective
  }
})

Input

Name Type Required
where ObjectiveWhereUniqueInput Yes

Output

Type: Objective
Required: No
List: No

update

Update one Objective

// Update one Objective
const objective = await prisma.objective.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ObjectiveUpdateInput | ObjectiveUncheckedUpdateInput Yes
where ObjectiveWhereUniqueInput Yes

Output

Type: Objective
Required: No
List: No

deleteMany

Delete zero or more Objective

// Delete a few Objective
const { count } = await prisma.objective.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ObjectiveWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Objective

const { count } = await prisma.objective.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ObjectiveUpdateManyMutationInput | ObjectiveUncheckedUpdateManyInput Yes
where ObjectiveWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Objective

// Update or create a Objective
const objective = await prisma.objective.upsert({
  create: {
    // ... data to create a Objective
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Objective we want to update
  }
})

Input

Name Type Required
where ObjectiveWhereUniqueInput Yes
create ObjectiveCreateInput | ObjectiveUncheckedCreateInput Yes
update ObjectiveUpdateInput | ObjectiveUncheckedUpdateInput Yes

Output

Type: Objective
Required: Yes
List: No

PickBan

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
team Team?
  • -
No -
teamId String?
  • -
No -
championId Int?
  • -
No -
pickTurn Int?
  • -
No -

Operations

findUnique

Find zero or one PickBan

// Get one PickBan
const pickBan = await prisma.pickBan.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PickBanWhereUniqueInput Yes

Output

Type: PickBan
Required: No
List: No

findFirst

Find first PickBan

// Get one PickBan
const pickBan = await prisma.pickBan.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PickBanWhereInput No
orderBy PickBanOrderByWithRelationInput[] | PickBanOrderByWithRelationInput No
cursor PickBanWhereUniqueInput No
take Int No
skip Int No
distinct PickBanScalarFieldEnum[] No

Output

Type: PickBan
Required: No
List: No

findMany

Find zero or more PickBan

// Get all PickBan
const PickBan = await prisma.pickBan.findMany()
// Get first 10 PickBan
const PickBan = await prisma.pickBan.findMany({ take: 10 })

Input

Name Type Required
where PickBanWhereInput No
orderBy PickBanOrderByWithRelationInput[] | PickBanOrderByWithRelationInput No
cursor PickBanWhereUniqueInput No
take Int No
skip Int No
distinct PickBanScalarFieldEnum[] No

Output

Type: PickBan
Required: Yes
List: Yes

create

Create one PickBan

// Create one PickBan
const PickBan = await prisma.pickBan.create({
  data: {
    // ... data to create a PickBan
  }
})

Input

Name Type Required
data PickBanCreateInput | PickBanUncheckedCreateInput Yes

Output

Type: PickBan
Required: Yes
List: No

delete

Delete one PickBan

// Delete one PickBan
const PickBan = await prisma.pickBan.delete({
  where: {
    // ... filter to delete one PickBan
  }
})

Input

Name Type Required
where PickBanWhereUniqueInput Yes

Output

Type: PickBan
Required: No
List: No

update

Update one PickBan

// Update one PickBan
const pickBan = await prisma.pickBan.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PickBanUpdateInput | PickBanUncheckedUpdateInput Yes
where PickBanWhereUniqueInput Yes

Output

Type: PickBan
Required: No
List: No

deleteMany

Delete zero or more PickBan

// Delete a few PickBan
const { count } = await prisma.pickBan.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PickBanWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one PickBan

const { count } = await prisma.pickBan.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PickBanUpdateManyMutationInput | PickBanUncheckedUpdateManyInput Yes
where PickBanWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one PickBan

// Update or create a PickBan
const pickBan = await prisma.pickBan.upsert({
  create: {
    // ... data to create a PickBan
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the PickBan we want to update
  }
})

Input

Name Type Required
where PickBanWhereUniqueInput Yes
create PickBanCreateInput | PickBanUncheckedCreateInput Yes
update PickBanUpdateInput | PickBanUncheckedUpdateInput Yes

Output

Type: PickBan
Required: Yes
List: No

Player

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
puuid String
  • @unique
  • @default()
Yes -
accountId String
  • @unique
  • @default()
Yes -
platformId String
  • @default()
Yes -
summonerId String
  • @unique
  • @default()
Yes -
summonerName String
  • @default()
Yes -
summonerLevel Int?
  • -
No -
profileIconId Int?
  • -
No -
revisionDate String
  • @default()
Yes -
kills PlayerKill[]
  • -
Yes -
deaths PlayerKill[]
  • -
Yes -
teams Team[]
  • -
Yes -
profile Profile?
  • -
No -
profileId String?
  • @unique
No -
monsterKills TeamMonsterKill[]
  • -
Yes -
buildingKills TeamBuildingKill[]
  • -
Yes -
itemEvent PlayerItemEvent[]
  • -
Yes -
endOfGameStats PlayerEndOfGameStat[]
  • -
Yes -
snapshots PlayerSnapshot[]
  • -
Yes -
wardEvents PlayerWardEvent[]
  • -
Yes -
skillLevelUpEvents PlayerSkillLevelUpEvent[]
  • -
Yes -

Operations

findUnique

Find zero or one Player

// Get one Player
const player = await prisma.player.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PlayerWhereUniqueInput Yes

Output

Type: Player
Required: No
List: No

findFirst

Find first Player

// Get one Player
const player = await prisma.player.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PlayerWhereInput No
orderBy PlayerOrderByWithRelationInput[] | PlayerOrderByWithRelationInput No
cursor PlayerWhereUniqueInput No
take Int No
skip Int No
distinct PlayerScalarFieldEnum[] No

Output

Type: Player
Required: No
List: No

findMany

Find zero or more Player

// Get all Player
const Player = await prisma.player.findMany()
// Get first 10 Player
const Player = await prisma.player.findMany({ take: 10 })

Input

Name Type Required
where PlayerWhereInput No
orderBy PlayerOrderByWithRelationInput[] | PlayerOrderByWithRelationInput No
cursor PlayerWhereUniqueInput No
take Int No
skip Int No
distinct PlayerScalarFieldEnum[] No

Output

Type: Player
Required: Yes
List: Yes

create

Create one Player

// Create one Player
const Player = await prisma.player.create({
  data: {
    // ... data to create a Player
  }
})

Input

Name Type Required
data PlayerCreateInput | PlayerUncheckedCreateInput Yes

Output

Type: Player
Required: Yes
List: No

delete

Delete one Player

// Delete one Player
const Player = await prisma.player.delete({
  where: {
    // ... filter to delete one Player
  }
})

Input

Name Type Required
where PlayerWhereUniqueInput Yes

Output

Type: Player
Required: No
List: No

update

Update one Player

// Update one Player
const player = await prisma.player.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PlayerUpdateInput | PlayerUncheckedUpdateInput Yes
where PlayerWhereUniqueInput Yes

Output

Type: Player
Required: No
List: No

deleteMany

Delete zero or more Player

// Delete a few Player
const { count } = await prisma.player.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PlayerWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Player

const { count } = await prisma.player.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PlayerUpdateManyMutationInput | PlayerUncheckedUpdateManyInput Yes
where PlayerWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Player

// Update or create a Player
const player = await prisma.player.upsert({
  create: {
    // ... data to create a Player
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Player we want to update
  }
})

Input

Name Type Required
where PlayerWhereUniqueInput Yes
create PlayerCreateInput | PlayerUncheckedCreateInput Yes
update PlayerUpdateInput | PlayerUncheckedUpdateInput Yes

Output

Type: Player
Required: Yes
List: No

PlayerEndOfGameStat

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
player Player?
  • -
No -
playerId String?
  • -
No -
game Game?
  • -
No -
gameId String?
  • -
No -
perks PlayerRune?
  • -
No -
perksId String?
  • @unique
No -
items PlayerItem?
  • -
No -
itemsId String?
  • -
No -
assists Int?
  • -
No -
baronKills Int?
  • -
No -
bountyLevel Int?
  • -
No -
championExperience Int?
  • -
No -
championLevel Int?
  • -
No -
championId Int?
  • -
No -
championName String
  • @default()
Yes -
championTransform Int?
  • -
No -
consumablesPurchased Int?
  • -
No -
damageDealtToBuildings Int?
  • -
No -
damageDealtToObjectives Int?
  • -
No -
damageDealtToTurrets Int?
  • -
No -
damageSelfMitigated Int?
  • -
No -
deaths Int?
  • -
No -
detectorWardsPlaced Int?
  • -
No -
doubleKills Int?
  • -
No -
dragonKills Int?
  • -
No -
firstBlood Boolean
  • @default(false)
Yes -
firstBloodAssist Boolean
  • @default(false)
Yes -
firstTowerKill Boolean
  • @default(false)
Yes -
firstTowerAssist Boolean
  • @default(false)
Yes -
gameEndedInEarlySurrender Boolean
  • @default(false)
Yes -
gameEndedInSurrender Boolean
  • @default(false)
Yes -
goldEarned Int?
  • -
No -
goldSpent Int?
  • -
No -
individualPosition String
  • @default()
Yes -
inhibitorKills Int?
  • -
No -
inhibitorTakedowns Int?
  • -
No -
inhibitorsLost Int?
  • -
No -
item0 Int?
  • -
No -
item1 Int?
  • -
No -
item2 Int?
  • -
No -
item3 Int?
  • -
No -
item4 Int?
  • -
No -
item5 Int?
  • -
No -
item6 Int?
  • -
No -
itemsPurchased Int?
  • -
No -
killingSprees Int?
  • -
No -
kills Int?
  • -
No -
lane String
  • @default()
Yes -
largestCriticalStrike Int?
  • -
No -
largestKillingSpree Int?
  • -
No -
largestMultiKill Int?
  • -
No -
longestTimeSpentLiving Int?
  • -
No -
magicDamageDealt Int?
  • -
No -
magicDamageDealtToChampions Int?
  • -
No -
magicDamageTaken Int?
  • -
No -
neutralMinionsKilled Int?
  • -
No -
nexusKills Int?
  • -
No -
nexusLost Int?
  • -
No -
nexusTakedowns Int?
  • -
No -
objectivesStolen Int?
  • -
No -
objectivesStolenAssists Int?
  • -
No -
participantId Int?
  • -
No -
pentaKills Int?
  • -
No -
physicalDamageDealt Int?
  • -
No -
physicalDamageDealtToChampions Int?
  • -
No -
physicalDamageTaken Int?
  • -
No -
quadraKills Int?
  • -
No -
riotIdName String
  • @default()
Yes -
riotIdTagline String
  • @default()
Yes -
role String
  • @default()
Yes -
sightWardsBoughtInGame Int?
  • -
No -
spell1Casts Int?
  • -
No -
spell2Casts Int?
  • -
No -
spell3Casts Int?
  • -
No -
spell4Casts Int?
  • -
No -
summoner1Casts Int?
  • -
No -
summoner1Id Int?
  • -
No -
summoner2Casts Int?
  • -
No -
summoner2Id Int?
  • -
No -
summonerLevel Int?
  • -
No -
summonerName String
  • @default()
Yes -
teamEarlySurrendered Boolean
  • @default(false)
Yes -
teamId Int?
  • -
No -
teamPosition String
  • @default()
Yes -
timeCCingOthers Int?
  • -
No -
timePlayed Int?
  • -
No -
totalDamageDealt Int?
  • -
No -
totalDamageDealtToChampions Int?
  • -
No -
totalDamageShieldedOnTeammates Int?
  • -
No -
totalDamageTaken Int?
  • -
No -
totalHeal Int?
  • -
No -
totalHealsOnTeammates Int?
  • -
No -
totalMinionsKilled Int?
  • -
No -
totalTimeCCDealt Int?
  • -
No -
totalTimeSpentDead Int?
  • -
No -
totalUnitsHealed Int?
  • -
No -
tripleKills Int?
  • -
No -
trueDamageDealt Int?
  • -
No -
trueDamageDealtToChampions Int?
  • -
No -
trueDamageTaken Int?
  • -
No -
turretsKilled Int?
  • -
No -
turretTakedowns Int?
  • -
No -
turretsLost Int?
  • -
No -
unrealKills Int?
  • -
No -
visionScore Int?
  • -
No -
visionWardsBoughtInGame Int?
  • -
No -
wardsKilled Int?
  • -
No -
wardsPlaced Int?
  • -
No -
win Boolean
  • @default(false)
Yes -

Operations

findUnique

Find zero or one PlayerEndOfGameStat

// Get one PlayerEndOfGameStat
const playerEndOfGameStat = await prisma.playerEndOfGameStat.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PlayerEndOfGameStatWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first PlayerEndOfGameStat

// Get one PlayerEndOfGameStat
const playerEndOfGameStat = await prisma.playerEndOfGameStat.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PlayerEndOfGameStatWhereInput No
orderBy PlayerEndOfGameStatOrderByWithRelationInput[] | PlayerEndOfGameStatOrderByWithRelationInput No
cursor PlayerEndOfGameStatWhereUniqueInput No
take Int No
skip Int No
distinct PlayerEndOfGameStatScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more PlayerEndOfGameStat

// Get all PlayerEndOfGameStat
const PlayerEndOfGameStat = await prisma.playerEndOfGameStat.findMany()
// Get first 10 PlayerEndOfGameStat
const PlayerEndOfGameStat = await prisma.playerEndOfGameStat.findMany({ take: 10 })

Input

Name Type Required
where PlayerEndOfGameStatWhereInput No
orderBy PlayerEndOfGameStatOrderByWithRelationInput[] | PlayerEndOfGameStatOrderByWithRelationInput No
cursor PlayerEndOfGameStatWhereUniqueInput No
take Int No
skip Int No
distinct PlayerEndOfGameStatScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one PlayerEndOfGameStat

// Create one PlayerEndOfGameStat
const PlayerEndOfGameStat = await prisma.playerEndOfGameStat.create({
  data: {
    // ... data to create a PlayerEndOfGameStat
  }
})

Input

Name Type Required
data PlayerEndOfGameStatCreateInput | PlayerEndOfGameStatUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one PlayerEndOfGameStat

// Delete one PlayerEndOfGameStat
const PlayerEndOfGameStat = await prisma.playerEndOfGameStat.delete({
  where: {
    // ... filter to delete one PlayerEndOfGameStat
  }
})

Input

Name Type Required
where PlayerEndOfGameStatWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one PlayerEndOfGameStat

// Update one PlayerEndOfGameStat
const playerEndOfGameStat = await prisma.playerEndOfGameStat.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PlayerEndOfGameStatUpdateInput | PlayerEndOfGameStatUncheckedUpdateInput Yes
where PlayerEndOfGameStatWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more PlayerEndOfGameStat

// Delete a few PlayerEndOfGameStat
const { count } = await prisma.playerEndOfGameStat.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PlayerEndOfGameStatWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one PlayerEndOfGameStat

const { count } = await prisma.playerEndOfGameStat.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PlayerEndOfGameStatUpdateManyMutationInput | PlayerEndOfGameStatUncheckedUpdateManyInput Yes
where PlayerEndOfGameStatWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one PlayerEndOfGameStat

// Update or create a PlayerEndOfGameStat
const playerEndOfGameStat = await prisma.playerEndOfGameStat.upsert({
  create: {
    // ... data to create a PlayerEndOfGameStat
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the PlayerEndOfGameStat we want to update
  }
})

Input

Name Type Required
where PlayerEndOfGameStatWhereUniqueInput Yes
create PlayerEndOfGameStatCreateInput | PlayerEndOfGameStatUncheckedCreateInput Yes
update PlayerEndOfGameStatUpdateInput | PlayerEndOfGameStatUncheckedUpdateInput Yes

Output

Required: Yes
List: No

PlayerItem

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
slot Int?
  • -
No -
itemId Int?
  • -
No -
name String
  • @default()
Yes -
playerEndOfGameStat PlayerEndOfGameStat[]
  • -
Yes -

Operations

findUnique

Find zero or one PlayerItem

// Get one PlayerItem
const playerItem = await prisma.playerItem.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PlayerItemWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first PlayerItem

// Get one PlayerItem
const playerItem = await prisma.playerItem.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PlayerItemWhereInput No
orderBy PlayerItemOrderByWithRelationInput[] | PlayerItemOrderByWithRelationInput No
cursor PlayerItemWhereUniqueInput No
take Int No
skip Int No
distinct PlayerItemScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more PlayerItem

// Get all PlayerItem
const PlayerItem = await prisma.playerItem.findMany()
// Get first 10 PlayerItem
const PlayerItem = await prisma.playerItem.findMany({ take: 10 })

Input

Name Type Required
where PlayerItemWhereInput No
orderBy PlayerItemOrderByWithRelationInput[] | PlayerItemOrderByWithRelationInput No
cursor PlayerItemWhereUniqueInput No
take Int No
skip Int No
distinct PlayerItemScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one PlayerItem

// Create one PlayerItem
const PlayerItem = await prisma.playerItem.create({
  data: {
    // ... data to create a PlayerItem
  }
})

Input

Name Type Required
data PlayerItemCreateInput | PlayerItemUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one PlayerItem

// Delete one PlayerItem
const PlayerItem = await prisma.playerItem.delete({
  where: {
    // ... filter to delete one PlayerItem
  }
})

Input

Name Type Required
where PlayerItemWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one PlayerItem

// Update one PlayerItem
const playerItem = await prisma.playerItem.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PlayerItemUpdateInput | PlayerItemUncheckedUpdateInput Yes
where PlayerItemWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more PlayerItem

// Delete a few PlayerItem
const { count } = await prisma.playerItem.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PlayerItemWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one PlayerItem

const { count } = await prisma.playerItem.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PlayerItemUpdateManyMutationInput | PlayerItemUncheckedUpdateManyInput Yes
where PlayerItemWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one PlayerItem

// Update or create a PlayerItem
const playerItem = await prisma.playerItem.upsert({
  create: {
    // ... data to create a PlayerItem
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the PlayerItem we want to update
  }
})

Input

Name Type Required
where PlayerItemWhereUniqueInput Yes
create PlayerItemCreateInput | PlayerItemUncheckedCreateInput Yes
update PlayerItemUpdateInput | PlayerItemUncheckedUpdateInput Yes

Output

Required: Yes
List: No

PlayerItemEvent

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
player Player[]
  • -
Yes -
type String
  • @default()
Yes -
itemId Int?
  • -
No -
name String
  • @default()
Yes -
undoId Int?
  • -
No -

Operations

findUnique

Find zero or one PlayerItemEvent

// Get one PlayerItemEvent
const playerItemEvent = await prisma.playerItemEvent.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PlayerItemEventWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first PlayerItemEvent

// Get one PlayerItemEvent
const playerItemEvent = await prisma.playerItemEvent.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PlayerItemEventWhereInput No
orderBy PlayerItemEventOrderByWithRelationInput[] | PlayerItemEventOrderByWithRelationInput No
cursor PlayerItemEventWhereUniqueInput No
take Int No
skip Int No
distinct PlayerItemEventScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more PlayerItemEvent

// Get all PlayerItemEvent
const PlayerItemEvent = await prisma.playerItemEvent.findMany()
// Get first 10 PlayerItemEvent
const PlayerItemEvent = await prisma.playerItemEvent.findMany({ take: 10 })

Input

Name Type Required
where PlayerItemEventWhereInput No
orderBy PlayerItemEventOrderByWithRelationInput[] | PlayerItemEventOrderByWithRelationInput No
cursor PlayerItemEventWhereUniqueInput No
take Int No
skip Int No
distinct PlayerItemEventScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one PlayerItemEvent

// Create one PlayerItemEvent
const PlayerItemEvent = await prisma.playerItemEvent.create({
  data: {
    // ... data to create a PlayerItemEvent
  }
})

Input

Name Type Required
data PlayerItemEventCreateInput | PlayerItemEventUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one PlayerItemEvent

// Delete one PlayerItemEvent
const PlayerItemEvent = await prisma.playerItemEvent.delete({
  where: {
    // ... filter to delete one PlayerItemEvent
  }
})

Input

Name Type Required
where PlayerItemEventWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one PlayerItemEvent

// Update one PlayerItemEvent
const playerItemEvent = await prisma.playerItemEvent.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PlayerItemEventUpdateInput | PlayerItemEventUncheckedUpdateInput Yes
where PlayerItemEventWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more PlayerItemEvent

// Delete a few PlayerItemEvent
const { count } = await prisma.playerItemEvent.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PlayerItemEventWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one PlayerItemEvent

const { count } = await prisma.playerItemEvent.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PlayerItemEventUpdateManyMutationInput | PlayerItemEventUncheckedUpdateManyInput Yes
where PlayerItemEventWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one PlayerItemEvent

// Update or create a PlayerItemEvent
const playerItemEvent = await prisma.playerItemEvent.upsert({
  create: {
    // ... data to create a PlayerItemEvent
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the PlayerItemEvent we want to update
  }
})

Input

Name Type Required
where PlayerItemEventWhereUniqueInput Yes
create PlayerItemEventCreateInput | PlayerItemEventUncheckedCreateInput Yes
update PlayerItemEventUpdateInput | PlayerItemEventUncheckedUpdateInput Yes

Output

Required: Yes
List: No

PlayerKill

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
killer Player[]
  • -
Yes -
victim Player[]
  • -
Yes -

Operations

findUnique

Find zero or one PlayerKill

// Get one PlayerKill
const playerKill = await prisma.playerKill.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PlayerKillWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first PlayerKill

// Get one PlayerKill
const playerKill = await prisma.playerKill.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PlayerKillWhereInput No
orderBy PlayerKillOrderByWithRelationInput[] | PlayerKillOrderByWithRelationInput No
cursor PlayerKillWhereUniqueInput No
take Int No
skip Int No
distinct PlayerKillScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more PlayerKill

// Get all PlayerKill
const PlayerKill = await prisma.playerKill.findMany()
// Get first 10 PlayerKill
const PlayerKill = await prisma.playerKill.findMany({ take: 10 })

Input

Name Type Required
where PlayerKillWhereInput No
orderBy PlayerKillOrderByWithRelationInput[] | PlayerKillOrderByWithRelationInput No
cursor PlayerKillWhereUniqueInput No
take Int No
skip Int No
distinct PlayerKillScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one PlayerKill

// Create one PlayerKill
const PlayerKill = await prisma.playerKill.create({
  data: {
    // ... data to create a PlayerKill
  }
})

Input

Name Type Required
data PlayerKillCreateInput | PlayerKillUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one PlayerKill

// Delete one PlayerKill
const PlayerKill = await prisma.playerKill.delete({
  where: {
    // ... filter to delete one PlayerKill
  }
})

Input

Name Type Required
where PlayerKillWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one PlayerKill

// Update one PlayerKill
const playerKill = await prisma.playerKill.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PlayerKillUpdateInput | PlayerKillUncheckedUpdateInput Yes
where PlayerKillWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more PlayerKill

// Delete a few PlayerKill
const { count } = await prisma.playerKill.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PlayerKillWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one PlayerKill

const { count } = await prisma.playerKill.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PlayerKillUpdateManyMutationInput | PlayerKillUncheckedUpdateManyInput Yes
where PlayerKillWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one PlayerKill

// Update or create a PlayerKill
const playerKill = await prisma.playerKill.upsert({
  create: {
    // ... data to create a PlayerKill
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the PlayerKill we want to update
  }
})

Input

Name Type Required
where PlayerKillWhereUniqueInput Yes
create PlayerKillCreateInput | PlayerKillUncheckedCreateInput Yes
update PlayerKillUpdateInput | PlayerKillUncheckedUpdateInput Yes

Output

Required: Yes
List: No

PlayerRune

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
playerEndOfGameStat PlayerEndOfGameStat?
  • -
No -
runeStyle RuneStyle[]
  • -
Yes -
defense Int?
  • -
No -
flex Int?
  • -
No -
offense Int?
  • -
No -

Operations

findUnique

Find zero or one PlayerRune

// Get one PlayerRune
const playerRune = await prisma.playerRune.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PlayerRuneWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first PlayerRune

// Get one PlayerRune
const playerRune = await prisma.playerRune.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PlayerRuneWhereInput No
orderBy PlayerRuneOrderByWithRelationInput[] | PlayerRuneOrderByWithRelationInput No
cursor PlayerRuneWhereUniqueInput No
take Int No
skip Int No
distinct PlayerRuneScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more PlayerRune

// Get all PlayerRune
const PlayerRune = await prisma.playerRune.findMany()
// Get first 10 PlayerRune
const PlayerRune = await prisma.playerRune.findMany({ take: 10 })

Input

Name Type Required
where PlayerRuneWhereInput No
orderBy PlayerRuneOrderByWithRelationInput[] | PlayerRuneOrderByWithRelationInput No
cursor PlayerRuneWhereUniqueInput No
take Int No
skip Int No
distinct PlayerRuneScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one PlayerRune

// Create one PlayerRune
const PlayerRune = await prisma.playerRune.create({
  data: {
    // ... data to create a PlayerRune
  }
})

Input

Name Type Required
data PlayerRuneCreateInput | PlayerRuneUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one PlayerRune

// Delete one PlayerRune
const PlayerRune = await prisma.playerRune.delete({
  where: {
    // ... filter to delete one PlayerRune
  }
})

Input

Name Type Required
where PlayerRuneWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one PlayerRune

// Update one PlayerRune
const playerRune = await prisma.playerRune.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PlayerRuneUpdateInput | PlayerRuneUncheckedUpdateInput Yes
where PlayerRuneWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more PlayerRune

// Delete a few PlayerRune
const { count } = await prisma.playerRune.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PlayerRuneWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one PlayerRune

const { count } = await prisma.playerRune.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PlayerRuneUpdateManyMutationInput | PlayerRuneUncheckedUpdateManyInput Yes
where PlayerRuneWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one PlayerRune

// Update or create a PlayerRune
const playerRune = await prisma.playerRune.upsert({
  create: {
    // ... data to create a PlayerRune
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the PlayerRune we want to update
  }
})

Input

Name Type Required
where PlayerRuneWhereUniqueInput Yes
create PlayerRuneCreateInput | PlayerRuneUncheckedCreateInput Yes
update PlayerRuneUpdateInput | PlayerRuneUncheckedUpdateInput Yes

Output

Required: Yes
List: No

PlayerSkillLevelUpEvent

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
player Player[]
  • -
Yes -
type String
  • @default()
Yes -
slot Int?
  • -
No -

Operations

findUnique

Find zero or one PlayerSkillLevelUpEvent

// Get one PlayerSkillLevelUpEvent
const playerSkillLevelUpEvent = await prisma.playerSkillLevelUpEvent.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PlayerSkillLevelUpEventWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first PlayerSkillLevelUpEvent

// Get one PlayerSkillLevelUpEvent
const playerSkillLevelUpEvent = await prisma.playerSkillLevelUpEvent.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PlayerSkillLevelUpEventWhereInput No
orderBy PlayerSkillLevelUpEventOrderByWithRelationInput[] | PlayerSkillLevelUpEventOrderByWithRelationInput No
cursor PlayerSkillLevelUpEventWhereUniqueInput No
take Int No
skip Int No
distinct PlayerSkillLevelUpEventScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more PlayerSkillLevelUpEvent

// Get all PlayerSkillLevelUpEvent
const PlayerSkillLevelUpEvent = await prisma.playerSkillLevelUpEvent.findMany()
// Get first 10 PlayerSkillLevelUpEvent
const PlayerSkillLevelUpEvent = await prisma.playerSkillLevelUpEvent.findMany({ take: 10 })

Input

Name Type Required
where PlayerSkillLevelUpEventWhereInput No
orderBy PlayerSkillLevelUpEventOrderByWithRelationInput[] | PlayerSkillLevelUpEventOrderByWithRelationInput No
cursor PlayerSkillLevelUpEventWhereUniqueInput No
take Int No
skip Int No
distinct PlayerSkillLevelUpEventScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one PlayerSkillLevelUpEvent

// Create one PlayerSkillLevelUpEvent
const PlayerSkillLevelUpEvent = await prisma.playerSkillLevelUpEvent.create({
  data: {
    // ... data to create a PlayerSkillLevelUpEvent
  }
})

Input

Name Type Required
data PlayerSkillLevelUpEventCreateInput | PlayerSkillLevelUpEventUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one PlayerSkillLevelUpEvent

// Delete one PlayerSkillLevelUpEvent
const PlayerSkillLevelUpEvent = await prisma.playerSkillLevelUpEvent.delete({
  where: {
    // ... filter to delete one PlayerSkillLevelUpEvent
  }
})

Input

Name Type Required
where PlayerSkillLevelUpEventWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one PlayerSkillLevelUpEvent

// Update one PlayerSkillLevelUpEvent
const playerSkillLevelUpEvent = await prisma.playerSkillLevelUpEvent.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PlayerSkillLevelUpEventUpdateInput | PlayerSkillLevelUpEventUncheckedUpdateInput Yes
where PlayerSkillLevelUpEventWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more PlayerSkillLevelUpEvent

// Delete a few PlayerSkillLevelUpEvent
const { count } = await prisma.playerSkillLevelUpEvent.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PlayerSkillLevelUpEventWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one PlayerSkillLevelUpEvent

const { count } = await prisma.playerSkillLevelUpEvent.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PlayerSkillLevelUpEventUpdateManyMutationInput | PlayerSkillLevelUpEventUncheckedUpdateManyInput Yes
where PlayerSkillLevelUpEventWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one PlayerSkillLevelUpEvent

// Update or create a PlayerSkillLevelUpEvent
const playerSkillLevelUpEvent = await prisma.playerSkillLevelUpEvent.upsert({
  create: {
    // ... data to create a PlayerSkillLevelUpEvent
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the PlayerSkillLevelUpEvent we want to update
  }
})

Input

Name Type Required
where PlayerSkillLevelUpEventWhereUniqueInput Yes
create PlayerSkillLevelUpEventCreateInput | PlayerSkillLevelUpEventUncheckedCreateInput Yes
update PlayerSkillLevelUpEventUpdateInput | PlayerSkillLevelUpEventUncheckedUpdateInput Yes

Output

Required: Yes
List: No

PlayerSnapshot

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
timestamp Float?
  • -
No -
currentGold Int?
  • -
No -
totalGold Int?
  • -
No -
totalGoldDiff Int?
  • -
No -
xp Int?
  • -
No -
xpDiff Int?
  • -
No -
level Int?
  • -
No -
cs Int?
  • -
No -
csDiff Int?
  • -
No -
monstersKilled Int?
  • -
No -
monstersKilledDiff Int?
  • -
No -
position Position[]
  • -
Yes -
player Player[]
  • -
Yes -

Operations

findUnique

Find zero or one PlayerSnapshot

// Get one PlayerSnapshot
const playerSnapshot = await prisma.playerSnapshot.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PlayerSnapshotWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first PlayerSnapshot

// Get one PlayerSnapshot
const playerSnapshot = await prisma.playerSnapshot.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PlayerSnapshotWhereInput No
orderBy PlayerSnapshotOrderByWithRelationInput[] | PlayerSnapshotOrderByWithRelationInput No
cursor PlayerSnapshotWhereUniqueInput No
take Int No
skip Int No
distinct PlayerSnapshotScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more PlayerSnapshot

// Get all PlayerSnapshot
const PlayerSnapshot = await prisma.playerSnapshot.findMany()
// Get first 10 PlayerSnapshot
const PlayerSnapshot = await prisma.playerSnapshot.findMany({ take: 10 })

Input

Name Type Required
where PlayerSnapshotWhereInput No
orderBy PlayerSnapshotOrderByWithRelationInput[] | PlayerSnapshotOrderByWithRelationInput No
cursor PlayerSnapshotWhereUniqueInput No
take Int No
skip Int No
distinct PlayerSnapshotScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one PlayerSnapshot

// Create one PlayerSnapshot
const PlayerSnapshot = await prisma.playerSnapshot.create({
  data: {
    // ... data to create a PlayerSnapshot
  }
})

Input

Name Type Required
data PlayerSnapshotCreateInput | PlayerSnapshotUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one PlayerSnapshot

// Delete one PlayerSnapshot
const PlayerSnapshot = await prisma.playerSnapshot.delete({
  where: {
    // ... filter to delete one PlayerSnapshot
  }
})

Input

Name Type Required
where PlayerSnapshotWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one PlayerSnapshot

// Update one PlayerSnapshot
const playerSnapshot = await prisma.playerSnapshot.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PlayerSnapshotUpdateInput | PlayerSnapshotUncheckedUpdateInput Yes
where PlayerSnapshotWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more PlayerSnapshot

// Delete a few PlayerSnapshot
const { count } = await prisma.playerSnapshot.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PlayerSnapshotWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one PlayerSnapshot

const { count } = await prisma.playerSnapshot.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PlayerSnapshotUpdateManyMutationInput | PlayerSnapshotUncheckedUpdateManyInput Yes
where PlayerSnapshotWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one PlayerSnapshot

// Update or create a PlayerSnapshot
const playerSnapshot = await prisma.playerSnapshot.upsert({
  create: {
    // ... data to create a PlayerSnapshot
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the PlayerSnapshot we want to update
  }
})

Input

Name Type Required
where PlayerSnapshotWhereUniqueInput Yes
create PlayerSnapshotCreateInput | PlayerSnapshotUncheckedCreateInput Yes
update PlayerSnapshotUpdateInput | PlayerSnapshotUncheckedUpdateInput Yes

Output

Required: Yes
List: No

PlayerWardEvent

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
player Player[]
  • -
Yes -
type String
  • @default()
Yes -
wardType PlayerWardEventWardTypeType?
  • -
No -

Operations

findUnique

Find zero or one PlayerWardEvent

// Get one PlayerWardEvent
const playerWardEvent = await prisma.playerWardEvent.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PlayerWardEventWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first PlayerWardEvent

// Get one PlayerWardEvent
const playerWardEvent = await prisma.playerWardEvent.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PlayerWardEventWhereInput No
orderBy PlayerWardEventOrderByWithRelationInput[] | PlayerWardEventOrderByWithRelationInput No
cursor PlayerWardEventWhereUniqueInput No
take Int No
skip Int No
distinct PlayerWardEventScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more PlayerWardEvent

// Get all PlayerWardEvent
const PlayerWardEvent = await prisma.playerWardEvent.findMany()
// Get first 10 PlayerWardEvent
const PlayerWardEvent = await prisma.playerWardEvent.findMany({ take: 10 })

Input

Name Type Required
where PlayerWardEventWhereInput No
orderBy PlayerWardEventOrderByWithRelationInput[] | PlayerWardEventOrderByWithRelationInput No
cursor PlayerWardEventWhereUniqueInput No
take Int No
skip Int No
distinct PlayerWardEventScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one PlayerWardEvent

// Create one PlayerWardEvent
const PlayerWardEvent = await prisma.playerWardEvent.create({
  data: {
    // ... data to create a PlayerWardEvent
  }
})

Input

Name Type Required
data PlayerWardEventCreateInput | PlayerWardEventUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one PlayerWardEvent

// Delete one PlayerWardEvent
const PlayerWardEvent = await prisma.playerWardEvent.delete({
  where: {
    // ... filter to delete one PlayerWardEvent
  }
})

Input

Name Type Required
where PlayerWardEventWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one PlayerWardEvent

// Update one PlayerWardEvent
const playerWardEvent = await prisma.playerWardEvent.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PlayerWardEventUpdateInput | PlayerWardEventUncheckedUpdateInput Yes
where PlayerWardEventWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more PlayerWardEvent

// Delete a few PlayerWardEvent
const { count } = await prisma.playerWardEvent.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PlayerWardEventWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one PlayerWardEvent

const { count } = await prisma.playerWardEvent.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PlayerWardEventUpdateManyMutationInput | PlayerWardEventUncheckedUpdateManyInput Yes
where PlayerWardEventWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one PlayerWardEvent

// Update or create a PlayerWardEvent
const playerWardEvent = await prisma.playerWardEvent.upsert({
  create: {
    // ... data to create a PlayerWardEvent
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the PlayerWardEvent we want to update
  }
})

Input

Name Type Required
where PlayerWardEventWhereUniqueInput Yes
create PlayerWardEventCreateInput | PlayerWardEventUncheckedCreateInput Yes
update PlayerWardEventUpdateInput | PlayerWardEventUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Position

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
event Event[]
  • -
Yes -
x Int?
  • -
No -
y Int?
  • -
No -
playerSnapshot PlayerSnapshot[]
  • -
Yes -

Operations

findUnique

Find zero or one Position

// Get one Position
const position = await prisma.position.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PositionWhereUniqueInput Yes

Output

Type: Position
Required: No
List: No

findFirst

Find first Position

// Get one Position
const position = await prisma.position.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PositionWhereInput No
orderBy PositionOrderByWithRelationInput[] | PositionOrderByWithRelationInput No
cursor PositionWhereUniqueInput No
take Int No
skip Int No
distinct PositionScalarFieldEnum[] No

Output

Type: Position
Required: No
List: No

findMany

Find zero or more Position

// Get all Position
const Position = await prisma.position.findMany()
// Get first 10 Position
const Position = await prisma.position.findMany({ take: 10 })

Input

Name Type Required
where PositionWhereInput No
orderBy PositionOrderByWithRelationInput[] | PositionOrderByWithRelationInput No
cursor PositionWhereUniqueInput No
take Int No
skip Int No
distinct PositionScalarFieldEnum[] No

Output

Type: Position
Required: Yes
List: Yes

create

Create one Position

// Create one Position
const Position = await prisma.position.create({
  data: {
    // ... data to create a Position
  }
})

Input

Name Type Required
data PositionCreateInput | PositionUncheckedCreateInput Yes

Output

Type: Position
Required: Yes
List: No

delete

Delete one Position

// Delete one Position
const Position = await prisma.position.delete({
  where: {
    // ... filter to delete one Position
  }
})

Input

Name Type Required
where PositionWhereUniqueInput Yes

Output

Type: Position
Required: No
List: No

update

Update one Position

// Update one Position
const position = await prisma.position.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PositionUpdateInput | PositionUncheckedUpdateInput Yes
where PositionWhereUniqueInput Yes

Output

Type: Position
Required: No
List: No

deleteMany

Delete zero or more Position

// Delete a few Position
const { count } = await prisma.position.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PositionWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Position

const { count } = await prisma.position.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PositionUpdateManyMutationInput | PositionUncheckedUpdateManyInput Yes
where PositionWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Position

// Update or create a Position
const position = await prisma.position.upsert({
  create: {
    // ... data to create a Position
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Position we want to update
  }
})

Input

Name Type Required
where PositionWhereUniqueInput Yes
create PositionCreateInput | PositionUncheckedCreateInput Yes
update PositionUpdateInput | PositionUncheckedUpdateInput Yes

Output

Type: Position
Required: Yes
List: No

Profile

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
update Boolean
  • @default(true)
Yes -
player Player?
  • -
No -
lastUpdate DateTime
  • @default(now())
Yes -
kills Int?
  • -
No -
deaths Int?
  • -
No -
assists Int?
  • -
No -
kda String
  • @default()
Yes -
winRate String
  • @default()
Yes -
csPerMinute String
  • @default()
Yes -
damagePerMinute String
  • @default()
Yes -
killsPerMinute String
  • @default()
Yes -
goldPerMinute String
  • @default()
Yes -
averageGameTime String
  • @default()
Yes -
averageTimeSpentDead String
  • @default()
Yes -
totalGameTime String
  • @default()
Yes -
activity Activity[]
  • -
Yes -
championWinrate ChampionWinrate[]
  • -
Yes -
duos Duo[]
  • -
Yes -

Operations

findUnique

Find zero or one Profile

// Get one Profile
const profile = await prisma.profile.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ProfileWhereUniqueInput Yes

Output

Type: Profile
Required: No
List: No

findFirst

Find first Profile

// Get one Profile
const profile = await prisma.profile.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ProfileWhereInput No
orderBy ProfileOrderByWithRelationInput[] | ProfileOrderByWithRelationInput No
cursor ProfileWhereUniqueInput No
take Int No
skip Int No
distinct ProfileScalarFieldEnum[] No

Output

Type: Profile
Required: No
List: No

findMany

Find zero or more Profile

// Get all Profile
const Profile = await prisma.profile.findMany()
// Get first 10 Profile
const Profile = await prisma.profile.findMany({ take: 10 })

Input

Name Type Required
where ProfileWhereInput No
orderBy ProfileOrderByWithRelationInput[] | ProfileOrderByWithRelationInput No
cursor ProfileWhereUniqueInput No
take Int No
skip Int No
distinct ProfileScalarFieldEnum[] No

Output

Type: Profile
Required: Yes
List: Yes

create

Create one Profile

// Create one Profile
const Profile = await prisma.profile.create({
  data: {
    // ... data to create a Profile
  }
})

Input

Name Type Required
data ProfileCreateInput | ProfileUncheckedCreateInput Yes

Output

Type: Profile
Required: Yes
List: No

delete

Delete one Profile

// Delete one Profile
const Profile = await prisma.profile.delete({
  where: {
    // ... filter to delete one Profile
  }
})

Input

Name Type Required
where ProfileWhereUniqueInput Yes

Output

Type: Profile
Required: No
List: No

update

Update one Profile

// Update one Profile
const profile = await prisma.profile.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ProfileUpdateInput | ProfileUncheckedUpdateInput Yes
where ProfileWhereUniqueInput Yes

Output

Type: Profile
Required: No
List: No

deleteMany

Delete zero or more Profile

// Delete a few Profile
const { count } = await prisma.profile.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ProfileWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Profile

const { count } = await prisma.profile.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ProfileUpdateManyMutationInput | ProfileUncheckedUpdateManyInput Yes
where ProfileWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Profile

// Update or create a Profile
const profile = await prisma.profile.upsert({
  create: {
    // ... data to create a Profile
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Profile we want to update
  }
})

Input

Name Type Required
where ProfileWhereUniqueInput Yes
create ProfileCreateInput | ProfileUncheckedCreateInput Yes
update ProfileUpdateInput | ProfileUncheckedUpdateInput Yes

Output

Type: Profile
Required: Yes
List: No

SeedIdentifier

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
identifier String
  • @unique
  • @default()
Yes -
type String
  • @default()
Yes -
timestamp DateTime
  • @default(now())
Yes -
priority Boolean
  • @default(false)
Yes -
retrieved Boolean
  • @default(false)
Yes -

Operations

findUnique

Find zero or one SeedIdentifier

// Get one SeedIdentifier
const seedIdentifier = await prisma.seedIdentifier.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SeedIdentifierWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first SeedIdentifier

// Get one SeedIdentifier
const seedIdentifier = await prisma.seedIdentifier.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SeedIdentifierWhereInput No
orderBy SeedIdentifierOrderByWithRelationInput[] | SeedIdentifierOrderByWithRelationInput No
cursor SeedIdentifierWhereUniqueInput No
take Int No
skip Int No
distinct SeedIdentifierScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more SeedIdentifier

// Get all SeedIdentifier
const SeedIdentifier = await prisma.seedIdentifier.findMany()
// Get first 10 SeedIdentifier
const SeedIdentifier = await prisma.seedIdentifier.findMany({ take: 10 })

Input

Name Type Required
where SeedIdentifierWhereInput No
orderBy SeedIdentifierOrderByWithRelationInput[] | SeedIdentifierOrderByWithRelationInput No
cursor SeedIdentifierWhereUniqueInput No
take Int No
skip Int No
distinct SeedIdentifierScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one SeedIdentifier

// Create one SeedIdentifier
const SeedIdentifier = await prisma.seedIdentifier.create({
  data: {
    // ... data to create a SeedIdentifier
  }
})

Input

Name Type Required
data SeedIdentifierCreateInput | SeedIdentifierUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one SeedIdentifier

// Delete one SeedIdentifier
const SeedIdentifier = await prisma.seedIdentifier.delete({
  where: {
    // ... filter to delete one SeedIdentifier
  }
})

Input

Name Type Required
where SeedIdentifierWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one SeedIdentifier

// Update one SeedIdentifier
const seedIdentifier = await prisma.seedIdentifier.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data SeedIdentifierUpdateInput | SeedIdentifierUncheckedUpdateInput Yes
where SeedIdentifierWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more SeedIdentifier

// Delete a few SeedIdentifier
const { count } = await prisma.seedIdentifier.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SeedIdentifierWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one SeedIdentifier

const { count } = await prisma.seedIdentifier.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data SeedIdentifierUpdateManyMutationInput | SeedIdentifierUncheckedUpdateManyInput Yes
where SeedIdentifierWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one SeedIdentifier

// Update or create a SeedIdentifier
const seedIdentifier = await prisma.seedIdentifier.upsert({
  create: {
    // ... data to create a SeedIdentifier
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the SeedIdentifier we want to update
  }
})

Input

Name Type Required
where SeedIdentifierWhereUniqueInput Yes
create SeedIdentifierCreateInput | SeedIdentifierUncheckedCreateInput Yes
update SeedIdentifierUpdateInput | SeedIdentifierUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Source

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
game Game[]
  • -
Yes -
api String
  • @default()
Yes -

Operations

findUnique

Find zero or one Source

// Get one Source
const source = await prisma.source.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SourceWhereUniqueInput Yes

Output

Type: Source
Required: No
List: No

findFirst

Find first Source

// Get one Source
const source = await prisma.source.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SourceWhereInput No
orderBy SourceOrderByWithRelationInput[] | SourceOrderByWithRelationInput No
cursor SourceWhereUniqueInput No
take Int No
skip Int No
distinct SourceScalarFieldEnum[] No

Output

Type: Source
Required: No
List: No

findMany

Find zero or more Source

// Get all Source
const Source = await prisma.source.findMany()
// Get first 10 Source
const Source = await prisma.source.findMany({ take: 10 })

Input

Name Type Required
where SourceWhereInput No
orderBy SourceOrderByWithRelationInput[] | SourceOrderByWithRelationInput No
cursor SourceWhereUniqueInput No
take Int No
skip Int No
distinct SourceScalarFieldEnum[] No

Output

Type: Source
Required: Yes
List: Yes

create

Create one Source

// Create one Source
const Source = await prisma.source.create({
  data: {
    // ... data to create a Source
  }
})

Input

Name Type Required
data SourceCreateInput | SourceUncheckedCreateInput Yes

Output

Type: Source
Required: Yes
List: No

delete

Delete one Source

// Delete one Source
const Source = await prisma.source.delete({
  where: {
    // ... filter to delete one Source
  }
})

Input

Name Type Required
where SourceWhereUniqueInput Yes

Output

Type: Source
Required: No
List: No

update

Update one Source

// Update one Source
const source = await prisma.source.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data SourceUpdateInput | SourceUncheckedUpdateInput Yes
where SourceWhereUniqueInput Yes

Output

Type: Source
Required: No
List: No

deleteMany

Delete zero or more Source

// Delete a few Source
const { count } = await prisma.source.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SourceWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Source

const { count } = await prisma.source.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data SourceUpdateManyMutationInput | SourceUncheckedUpdateManyInput Yes
where SourceWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Source

// Update or create a Source
const source = await prisma.source.upsert({
  create: {
    // ... data to create a Source
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Source we want to update
  }
})

Input

Name Type Required
where SourceWhereUniqueInput Yes
create SourceCreateInput | SourceUncheckedCreateInput Yes
update SourceUpdateInput | SourceUncheckedUpdateInput Yes

Output

Type: Source
Required: Yes
List: No

Team

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
pickBan PickBan[]
  • -
Yes -
game Game?
  • -
No -
gameId String?
  • -
No -
players Player[]
  • -
Yes -
objectives Objective[]
  • -
Yes -
teamId Int?
  • -
No -
teamMatchId String
  • @unique
  • @default()
Yes -
win Boolean
  • @default(false)
Yes -
from_Game_blueTeam Game[]
  • -
Yes -
from_Game_redTeam Game[]
  • -
Yes -

Operations

findUnique

Find zero or one Team

// Get one Team
const team = await prisma.team.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TeamWhereUniqueInput Yes

Output

Type: Team
Required: No
List: No

findFirst

Find first Team

// Get one Team
const team = await prisma.team.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TeamWhereInput No
orderBy TeamOrderByWithRelationInput[] | TeamOrderByWithRelationInput No
cursor TeamWhereUniqueInput No
take Int No
skip Int No
distinct TeamScalarFieldEnum[] No

Output

Type: Team
Required: No
List: No

findMany

Find zero or more Team

// Get all Team
const Team = await prisma.team.findMany()
// Get first 10 Team
const Team = await prisma.team.findMany({ take: 10 })

Input

Name Type Required
where TeamWhereInput No
orderBy TeamOrderByWithRelationInput[] | TeamOrderByWithRelationInput No
cursor TeamWhereUniqueInput No
take Int No
skip Int No
distinct TeamScalarFieldEnum[] No

Output

Type: Team
Required: Yes
List: Yes

create

Create one Team

// Create one Team
const Team = await prisma.team.create({
  data: {
    // ... data to create a Team
  }
})

Input

Name Type Required
data TeamCreateInput | TeamUncheckedCreateInput Yes

Output

Type: Team
Required: Yes
List: No

delete

Delete one Team

// Delete one Team
const Team = await prisma.team.delete({
  where: {
    // ... filter to delete one Team
  }
})

Input

Name Type Required
where TeamWhereUniqueInput Yes

Output

Type: Team
Required: No
List: No

update

Update one Team

// Update one Team
const team = await prisma.team.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data TeamUpdateInput | TeamUncheckedUpdateInput Yes
where TeamWhereUniqueInput Yes

Output

Type: Team
Required: No
List: No

deleteMany

Delete zero or more Team

// Delete a few Team
const { count } = await prisma.team.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TeamWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Team

const { count } = await prisma.team.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data TeamUpdateManyMutationInput | TeamUncheckedUpdateManyInput Yes
where TeamWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Team

// Update or create a Team
const team = await prisma.team.upsert({
  create: {
    // ... data to create a Team
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Team we want to update
  }
})

Input

Name Type Required
where TeamWhereUniqueInput Yes
create TeamCreateInput | TeamUncheckedCreateInput Yes
update TeamUpdateInput | TeamUncheckedUpdateInput Yes

Output

Type: Team
Required: Yes
List: No

TeamBuildingKill

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
killer Player[]
  • -
Yes -
type String
  • @default()
Yes -
lane String
  • @default()
Yes -
side String
  • @default()
Yes -
towerLocation String
  • @default()
Yes -

Operations

findUnique

Find zero or one TeamBuildingKill

// Get one TeamBuildingKill
const teamBuildingKill = await prisma.teamBuildingKill.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TeamBuildingKillWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first TeamBuildingKill

// Get one TeamBuildingKill
const teamBuildingKill = await prisma.teamBuildingKill.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TeamBuildingKillWhereInput No
orderBy TeamBuildingKillOrderByWithRelationInput[] | TeamBuildingKillOrderByWithRelationInput No
cursor TeamBuildingKillWhereUniqueInput No
take Int No
skip Int No
distinct TeamBuildingKillScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more TeamBuildingKill

// Get all TeamBuildingKill
const TeamBuildingKill = await prisma.teamBuildingKill.findMany()
// Get first 10 TeamBuildingKill
const TeamBuildingKill = await prisma.teamBuildingKill.findMany({ take: 10 })

Input

Name Type Required
where TeamBuildingKillWhereInput No
orderBy TeamBuildingKillOrderByWithRelationInput[] | TeamBuildingKillOrderByWithRelationInput No
cursor TeamBuildingKillWhereUniqueInput No
take Int No
skip Int No
distinct TeamBuildingKillScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one TeamBuildingKill

// Create one TeamBuildingKill
const TeamBuildingKill = await prisma.teamBuildingKill.create({
  data: {
    // ... data to create a TeamBuildingKill
  }
})

Input

Name Type Required
data TeamBuildingKillCreateInput | TeamBuildingKillUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one TeamBuildingKill

// Delete one TeamBuildingKill
const TeamBuildingKill = await prisma.teamBuildingKill.delete({
  where: {
    // ... filter to delete one TeamBuildingKill
  }
})

Input

Name Type Required
where TeamBuildingKillWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one TeamBuildingKill

// Update one TeamBuildingKill
const teamBuildingKill = await prisma.teamBuildingKill.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data TeamBuildingKillUpdateInput | TeamBuildingKillUncheckedUpdateInput Yes
where TeamBuildingKillWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more TeamBuildingKill

// Delete a few TeamBuildingKill
const { count } = await prisma.teamBuildingKill.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TeamBuildingKillWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one TeamBuildingKill

const { count } = await prisma.teamBuildingKill.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data TeamBuildingKillUpdateManyMutationInput | TeamBuildingKillUncheckedUpdateManyInput Yes
where TeamBuildingKillWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one TeamBuildingKill

// Update or create a TeamBuildingKill
const teamBuildingKill = await prisma.teamBuildingKill.upsert({
  create: {
    // ... data to create a TeamBuildingKill
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the TeamBuildingKill we want to update
  }
})

Input

Name Type Required
where TeamBuildingKillWhereUniqueInput Yes
create TeamBuildingKillCreateInput | TeamBuildingKillUncheckedCreateInput Yes
update TeamBuildingKillUpdateInput | TeamBuildingKillUncheckedUpdateInput Yes

Output

Required: Yes
List: No

TeamMonsterKill

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
killer Player[]
  • -
Yes -
type String
  • @default()
Yes -
subType String
  • @default()
Yes -

Operations

findUnique

Find zero or one TeamMonsterKill

// Get one TeamMonsterKill
const teamMonsterKill = await prisma.teamMonsterKill.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TeamMonsterKillWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first TeamMonsterKill

// Get one TeamMonsterKill
const teamMonsterKill = await prisma.teamMonsterKill.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TeamMonsterKillWhereInput No
orderBy TeamMonsterKillOrderByWithRelationInput[] | TeamMonsterKillOrderByWithRelationInput No
cursor TeamMonsterKillWhereUniqueInput No
take Int No
skip Int No
distinct TeamMonsterKillScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more TeamMonsterKill

// Get all TeamMonsterKill
const TeamMonsterKill = await prisma.teamMonsterKill.findMany()
// Get first 10 TeamMonsterKill
const TeamMonsterKill = await prisma.teamMonsterKill.findMany({ take: 10 })

Input

Name Type Required
where TeamMonsterKillWhereInput No
orderBy TeamMonsterKillOrderByWithRelationInput[] | TeamMonsterKillOrderByWithRelationInput No
cursor TeamMonsterKillWhereUniqueInput No
take Int No
skip Int No
distinct TeamMonsterKillScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one TeamMonsterKill

// Create one TeamMonsterKill
const TeamMonsterKill = await prisma.teamMonsterKill.create({
  data: {
    // ... data to create a TeamMonsterKill
  }
})

Input

Name Type Required
data TeamMonsterKillCreateInput | TeamMonsterKillUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one TeamMonsterKill

// Delete one TeamMonsterKill
const TeamMonsterKill = await prisma.teamMonsterKill.delete({
  where: {
    // ... filter to delete one TeamMonsterKill
  }
})

Input

Name Type Required
where TeamMonsterKillWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one TeamMonsterKill

// Update one TeamMonsterKill
const teamMonsterKill = await prisma.teamMonsterKill.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data TeamMonsterKillUpdateInput | TeamMonsterKillUncheckedUpdateInput Yes
where TeamMonsterKillWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more TeamMonsterKill

// Delete a few TeamMonsterKill
const { count } = await prisma.teamMonsterKill.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TeamMonsterKillWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one TeamMonsterKill

const { count } = await prisma.teamMonsterKill.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data TeamMonsterKillUpdateManyMutationInput | TeamMonsterKillUncheckedUpdateManyInput Yes
where TeamMonsterKillWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one TeamMonsterKill

// Update or create a TeamMonsterKill
const teamMonsterKill = await prisma.teamMonsterKill.upsert({
  create: {
    // ... data to create a TeamMonsterKill
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the TeamMonsterKill we want to update
  }
})

Input

Name Type Required
where TeamMonsterKillWhereUniqueInput Yes
create TeamMonsterKillCreateInput | TeamMonsterKillUncheckedCreateInput Yes
update TeamMonsterKillUpdateInput | TeamMonsterKillUncheckedUpdateInput Yes

Output

Required: Yes
List: No

RuneSelection

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
runeStyle RuneStyle?
  • -
No -
runeStyleId String?
  • -
No -
perk Int?
  • -
No -
var1 Int?
  • -
No -
var2 Int?
  • -
No -
var3 Int?
  • -
No -

Operations

findUnique

Find zero or one RuneSelection

// Get one RuneSelection
const runeSelection = await prisma.runeSelection.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where RuneSelectionWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first RuneSelection

// Get one RuneSelection
const runeSelection = await prisma.runeSelection.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where RuneSelectionWhereInput No
orderBy RuneSelectionOrderByWithRelationInput[] | RuneSelectionOrderByWithRelationInput No
cursor RuneSelectionWhereUniqueInput No
take Int No
skip Int No
distinct RuneSelectionScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more RuneSelection

// Get all RuneSelection
const RuneSelection = await prisma.runeSelection.findMany()
// Get first 10 RuneSelection
const RuneSelection = await prisma.runeSelection.findMany({ take: 10 })

Input

Name Type Required
where RuneSelectionWhereInput No
orderBy RuneSelectionOrderByWithRelationInput[] | RuneSelectionOrderByWithRelationInput No
cursor RuneSelectionWhereUniqueInput No
take Int No
skip Int No
distinct RuneSelectionScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one RuneSelection

// Create one RuneSelection
const RuneSelection = await prisma.runeSelection.create({
  data: {
    // ... data to create a RuneSelection
  }
})

Input

Name Type Required
data RuneSelectionCreateInput | RuneSelectionUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one RuneSelection

// Delete one RuneSelection
const RuneSelection = await prisma.runeSelection.delete({
  where: {
    // ... filter to delete one RuneSelection
  }
})

Input

Name Type Required
where RuneSelectionWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one RuneSelection

// Update one RuneSelection
const runeSelection = await prisma.runeSelection.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data RuneSelectionUpdateInput | RuneSelectionUncheckedUpdateInput Yes
where RuneSelectionWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more RuneSelection

// Delete a few RuneSelection
const { count } = await prisma.runeSelection.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where RuneSelectionWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one RuneSelection

const { count } = await prisma.runeSelection.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data RuneSelectionUpdateManyMutationInput | RuneSelectionUncheckedUpdateManyInput Yes
where RuneSelectionWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one RuneSelection

// Update or create a RuneSelection
const runeSelection = await prisma.runeSelection.upsert({
  create: {
    // ... data to create a RuneSelection
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the RuneSelection we want to update
  }
})

Input

Name Type Required
where RuneSelectionWhereUniqueInput Yes
create RuneSelectionCreateInput | RuneSelectionUncheckedCreateInput Yes
update RuneSelectionUpdateInput | RuneSelectionUncheckedUpdateInput Yes

Output

Required: Yes
List: No

RuneStyle

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
playerRunes PlayerRune?
  • -
No -
playerRunesId String?
  • -
No -
selection RuneSelection[]
  • -
Yes -
description String
  • @default()
Yes -
style Int?
  • -
No -

Operations

findUnique

Find zero or one RuneStyle

// Get one RuneStyle
const runeStyle = await prisma.runeStyle.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where RuneStyleWhereUniqueInput Yes

Output

Type: RuneStyle
Required: No
List: No

findFirst

Find first RuneStyle

// Get one RuneStyle
const runeStyle = await prisma.runeStyle.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where RuneStyleWhereInput No
orderBy RuneStyleOrderByWithRelationInput[] | RuneStyleOrderByWithRelationInput No
cursor RuneStyleWhereUniqueInput No
take Int No
skip Int No
distinct RuneStyleScalarFieldEnum[] No

Output

Type: RuneStyle
Required: No
List: No

findMany

Find zero or more RuneStyle

// Get all RuneStyle
const RuneStyle = await prisma.runeStyle.findMany()
// Get first 10 RuneStyle
const RuneStyle = await prisma.runeStyle.findMany({ take: 10 })

Input

Name Type Required
where RuneStyleWhereInput No
orderBy RuneStyleOrderByWithRelationInput[] | RuneStyleOrderByWithRelationInput No
cursor RuneStyleWhereUniqueInput No
take Int No
skip Int No
distinct RuneStyleScalarFieldEnum[] No

Output

Type: RuneStyle
Required: Yes
List: Yes

create

Create one RuneStyle

// Create one RuneStyle
const RuneStyle = await prisma.runeStyle.create({
  data: {
    // ... data to create a RuneStyle
  }
})

Input

Name Type Required
data RuneStyleCreateInput | RuneStyleUncheckedCreateInput Yes

Output

Type: RuneStyle
Required: Yes
List: No

delete

Delete one RuneStyle

// Delete one RuneStyle
const RuneStyle = await prisma.runeStyle.delete({
  where: {
    // ... filter to delete one RuneStyle
  }
})

Input

Name Type Required
where RuneStyleWhereUniqueInput Yes

Output

Type: RuneStyle
Required: No
List: No

update

Update one RuneStyle

// Update one RuneStyle
const runeStyle = await prisma.runeStyle.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data RuneStyleUpdateInput | RuneStyleUncheckedUpdateInput Yes
where RuneStyleWhereUniqueInput Yes

Output

Type: RuneStyle
Required: No
List: No

deleteMany

Delete zero or more RuneStyle

// Delete a few RuneStyle
const { count } = await prisma.runeStyle.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where RuneStyleWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one RuneStyle

const { count } = await prisma.runeStyle.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data RuneStyleUpdateManyMutationInput | RuneStyleUncheckedUpdateManyInput Yes
where RuneStyleWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one RuneStyle

// Update or create a RuneStyle
const runeStyle = await prisma.runeStyle.upsert({
  create: {
    // ... data to create a RuneStyle
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the RuneStyle we want to update
  }
})

Input

Name Type Required
where RuneStyleWhereUniqueInput Yes
create RuneStyleCreateInput | RuneStyleUncheckedCreateInput Yes
update RuneStyleUpdateInput | RuneStyleUncheckedUpdateInput Yes

Output

Type: RuneStyle
Required: Yes
List: No

Types

Input Types

ActivityWhereInput

Name Type Nullable
AND ActivityWhereInput | ActivityWhereInput[] No
OR ActivityWhereInput[] No
NOT ActivityWhereInput | ActivityWhereInput[] No
id StringFilter | String No
profile ProfileRelationFilter | ProfileWhereInput | Null Yes
profileId StringNullableFilter | String | Null Yes
month IntNullableFilter | Int | Null Yes
year IntNullableFilter | Int | Null Yes
day IntNullableFilter | Int | Null Yes
gamesPlayed IntNullableFilter | Int | Null Yes

ActivityOrderByWithRelationInput

Name Type Nullable
id SortOrder No
profile ProfileOrderByWithRelationInput No
profileId SortOrder No
month SortOrder No
year SortOrder No
day SortOrder No
gamesPlayed SortOrder No

ActivityWhereUniqueInput

Name Type Nullable
id String No

ActivityOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
profileId SortOrder No
month SortOrder No
year SortOrder No
day SortOrder No
gamesPlayed SortOrder No
_count ActivityCountOrderByAggregateInput No
_avg ActivityAvgOrderByAggregateInput No
_max ActivityMaxOrderByAggregateInput No
_min ActivityMinOrderByAggregateInput No
_sum ActivitySumOrderByAggregateInput No


ChampionWinrateWhereInput

Name Type Nullable
AND ChampionWinrateWhereInput | ChampionWinrateWhereInput[] No
OR ChampionWinrateWhereInput[] No
NOT ChampionWinrateWhereInput | ChampionWinrateWhereInput[] No
id StringFilter | String No
profile ProfileRelationFilter | ProfileWhereInput | Null Yes
profileId StringNullableFilter | String | Null Yes
champion StringFilter | String No
wins IntNullableFilter | Int | Null Yes
games IntNullableFilter | Int | Null Yes
spell1Casts IntNullableFilter | Int | Null Yes
spell2Casts IntNullableFilter | Int | Null Yes
spell3Casts IntNullableFilter | Int | Null Yes
spell4Casts IntNullableFilter | Int | Null Yes

ChampionWinrateOrderByWithRelationInput

Name Type Nullable
id SortOrder No
profile ProfileOrderByWithRelationInput No
profileId SortOrder No
champion SortOrder No
wins SortOrder No
games SortOrder No
spell1Casts SortOrder No
spell2Casts SortOrder No
spell3Casts SortOrder No
spell4Casts SortOrder No

ChampionWinrateWhereUniqueInput

Name Type Nullable
id String No

ChampionWinrateOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
profileId SortOrder No
champion SortOrder No
wins SortOrder No
games SortOrder No
spell1Casts SortOrder No
spell2Casts SortOrder No
spell3Casts SortOrder No
spell4Casts SortOrder No
_count ChampionWinrateCountOrderByAggregateInput No
_avg ChampionWinrateAvgOrderByAggregateInput No
_max ChampionWinrateMaxOrderByAggregateInput No
_min ChampionWinrateMinOrderByAggregateInput No
_sum ChampionWinrateSumOrderByAggregateInput No

ChampionWinrateScalarWhereWithAggregatesInput

Name Type Nullable
AND ChampionWinrateScalarWhereWithAggregatesInput | ChampionWinrateScalarWhereWithAggregatesInput[] No
OR ChampionWinrateScalarWhereWithAggregatesInput[] No
NOT ChampionWinrateScalarWhereWithAggregatesInput | ChampionWinrateScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
profileId StringNullableWithAggregatesFilter | String | Null Yes
champion StringWithAggregatesFilter | String No
wins IntNullableWithAggregatesFilter | Int | Null Yes
games IntNullableWithAggregatesFilter | Int | Null Yes
spell1Casts IntNullableWithAggregatesFilter | Int | Null Yes
spell2Casts IntNullableWithAggregatesFilter | Int | Null Yes
spell3Casts IntNullableWithAggregatesFilter | Int | Null Yes
spell4Casts IntNullableWithAggregatesFilter | Int | Null Yes

DuoWhereInput

Name Type Nullable
AND DuoWhereInput | DuoWhereInput[] No
OR DuoWhereInput[] No
NOT DuoWhereInput | DuoWhereInput[] No
id StringFilter | String No
profile ProfileRelationFilter | ProfileWhereInput | Null Yes
profileId StringNullableFilter | String | Null Yes
name StringFilter | String No
wins IntNullableFilter | Int | Null Yes
losses IntNullableFilter | Int | Null Yes
winrate StringFilter | String No

DuoOrderByWithRelationInput

Name Type Nullable
id SortOrder No
profile ProfileOrderByWithRelationInput No
profileId SortOrder No
name SortOrder No
wins SortOrder No
losses SortOrder No
winrate SortOrder No

DuoWhereUniqueInput

Name Type Nullable
id String No

DuoOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
profileId SortOrder No
name SortOrder No
wins SortOrder No
losses SortOrder No
winrate SortOrder No
_count DuoCountOrderByAggregateInput No
_avg DuoAvgOrderByAggregateInput No
_max DuoMaxOrderByAggregateInput No
_min DuoMinOrderByAggregateInput No
_sum DuoSumOrderByAggregateInput No


ConstantWhereInput

Name Type Nullable
AND ConstantWhereInput | ConstantWhereInput[] No
OR ConstantWhereInput[] No
NOT ConstantWhereInput | ConstantWhereInput[] No
id StringFilter | String No
startTime StringFilter | String No
currentSeason StringFilter | String No
seeding BoolFilter | Boolean No

ConstantOrderByWithRelationInput

Name Type Nullable
id SortOrder No
startTime SortOrder No
currentSeason SortOrder No
seeding SortOrder No

ConstantWhereUniqueInput

Name Type Nullable
id String No

ConstantOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
startTime SortOrder No
currentSeason SortOrder No
seeding SortOrder No
_count ConstantCountOrderByAggregateInput No
_max ConstantMaxOrderByAggregateInput No
_min ConstantMinOrderByAggregateInput No


EventWhereInput

Name Type Nullable
AND EventWhereInput | EventWhereInput[] No
OR EventWhereInput[] No
NOT EventWhereInput | EventWhereInput[] No
id StringFilter | String No
timestamp IntNullableFilter | Int | Null Yes
position PositionListRelationFilter No

EventOrderByWithRelationInput

Name Type Nullable
id SortOrder No
timestamp SortOrder No
position PositionOrderByRelationAggregateInput No

EventWhereUniqueInput

Name Type Nullable
id String No

EventOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
timestamp SortOrder No
_count EventCountOrderByAggregateInput No
_avg EventAvgOrderByAggregateInput No
_max EventMaxOrderByAggregateInput No
_min EventMinOrderByAggregateInput No
_sum EventSumOrderByAggregateInput No


GameWhereInput

Name Type Nullable
AND GameWhereInput | GameWhereInput[] No
OR GameWhereInput[] No
NOT GameWhereInput | GameWhereInput[] No
id StringFilter | String No
matchId StringFilter | String No
gameId StringFilter | String No
gameCreation StringFilter | String No
gameStartTimestamp StringFilter | String No
gameEndTimestamp StringFilter | String No
duration IntNullableFilter | Int | Null Yes
start StringFilter | String No
gameVersion StringFilter | String No
blueTeam TeamRelationFilter | TeamWhereInput | Null Yes
blueTeamId StringNullableFilter | String | Null Yes
redTeam TeamRelationFilter | TeamWhereInput | Null Yes
redTeamId StringNullableFilter | String | Null Yes
source SourceListRelationFilter No
tournament StringFilter | String No
gameInSeries IntNullableFilter | Int | Null Yes
vod StringFilter | String No
platformId StringFilter | String No
from_PlayerEndOfGameStat_game PlayerEndOfGameStatListRelationFilter No
from_Team_game TeamListRelationFilter No

GameOrderByWithRelationInput

Name Type Nullable
id SortOrder No
matchId SortOrder No
gameId SortOrder No
gameCreation SortOrder No
gameStartTimestamp SortOrder No
gameEndTimestamp SortOrder No
duration SortOrder No
start SortOrder No
gameVersion SortOrder No
blueTeam TeamOrderByWithRelationInput No
blueTeamId SortOrder No
redTeam TeamOrderByWithRelationInput No
redTeamId SortOrder No
source SourceOrderByRelationAggregateInput No
tournament SortOrder No
gameInSeries SortOrder No
vod SortOrder No
platformId SortOrder No
from_PlayerEndOfGameStat_game PlayerEndOfGameStatOrderByRelationAggregateInput No
from_Team_game TeamOrderByRelationAggregateInput No

GameWhereUniqueInput

Name Type Nullable
id String No
matchId String No

GameOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
matchId SortOrder No
gameId SortOrder No
gameCreation SortOrder No
gameStartTimestamp SortOrder No
gameEndTimestamp SortOrder No
duration SortOrder No
start SortOrder No
gameVersion SortOrder No
blueTeamId SortOrder No
redTeamId SortOrder No
tournament SortOrder No
gameInSeries SortOrder No
vod SortOrder No
platformId SortOrder No
_count GameCountOrderByAggregateInput No
_avg GameAvgOrderByAggregateInput No
_max GameMaxOrderByAggregateInput No
_min GameMinOrderByAggregateInput No
_sum GameSumOrderByAggregateInput No

GameScalarWhereWithAggregatesInput

Name Type Nullable
AND GameScalarWhereWithAggregatesInput | GameScalarWhereWithAggregatesInput[] No
OR GameScalarWhereWithAggregatesInput[] No
NOT GameScalarWhereWithAggregatesInput | GameScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
matchId StringWithAggregatesFilter | String No
gameId StringWithAggregatesFilter | String No
gameCreation StringWithAggregatesFilter | String No
gameStartTimestamp StringWithAggregatesFilter | String No
gameEndTimestamp StringWithAggregatesFilter | String No
duration IntNullableWithAggregatesFilter | Int | Null Yes
start StringWithAggregatesFilter | String No
gameVersion StringWithAggregatesFilter | String No
blueTeamId StringNullableWithAggregatesFilter | String | Null Yes
redTeamId StringNullableWithAggregatesFilter | String | Null Yes
tournament StringWithAggregatesFilter | String No
gameInSeries IntNullableWithAggregatesFilter | Int | Null Yes
vod StringWithAggregatesFilter | String No
platformId StringWithAggregatesFilter | String No

ObjectiveWhereInput

Name Type Nullable
AND ObjectiveWhereInput | ObjectiveWhereInput[] No
OR ObjectiveWhereInput[] No
NOT ObjectiveWhereInput | ObjectiveWhereInput[] No
id StringFilter | String No
team TeamRelationFilter | TeamWhereInput | Null Yes
teamId StringNullableFilter | String | Null Yes
first BoolFilter | Boolean No
kills IntNullableFilter | Int | Null Yes
type StringFilter | String No

ObjectiveOrderByWithRelationInput

Name Type Nullable
id SortOrder No
team TeamOrderByWithRelationInput No
teamId SortOrder No
first SortOrder No
kills SortOrder No
type SortOrder No

ObjectiveWhereUniqueInput

Name Type Nullable
id String No

ObjectiveOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
teamId SortOrder No
first SortOrder No
kills SortOrder No
type SortOrder No
_count ObjectiveCountOrderByAggregateInput No
_avg ObjectiveAvgOrderByAggregateInput No
_max ObjectiveMaxOrderByAggregateInput No
_min ObjectiveMinOrderByAggregateInput No
_sum ObjectiveSumOrderByAggregateInput No


PickBanWhereInput

Name Type Nullable
AND PickBanWhereInput | PickBanWhereInput[] No
OR PickBanWhereInput[] No
NOT PickBanWhereInput | PickBanWhereInput[] No
id StringFilter | String No
team TeamRelationFilter | TeamWhereInput | Null Yes
teamId StringNullableFilter | String | Null Yes
championId IntNullableFilter | Int | Null Yes
pickTurn IntNullableFilter | Int | Null Yes

PickBanOrderByWithRelationInput

Name Type Nullable
id SortOrder No
team TeamOrderByWithRelationInput No
teamId SortOrder No
championId SortOrder No
pickTurn SortOrder No

PickBanWhereUniqueInput

Name Type Nullable
id String No

PickBanOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
teamId SortOrder No
championId SortOrder No
pickTurn SortOrder No
_count PickBanCountOrderByAggregateInput No
_avg PickBanAvgOrderByAggregateInput No
_max PickBanMaxOrderByAggregateInput No
_min PickBanMinOrderByAggregateInput No
_sum PickBanSumOrderByAggregateInput No


PlayerWhereInput

Name Type Nullable
AND PlayerWhereInput | PlayerWhereInput[] No
OR PlayerWhereInput[] No
NOT PlayerWhereInput | PlayerWhereInput[] No
id StringFilter | String No
puuid StringFilter | String No
accountId StringFilter | String No
platformId StringFilter | String No
summonerId StringFilter | String No
summonerName StringFilter | String No
summonerLevel IntNullableFilter | Int | Null Yes
profileIconId IntNullableFilter | Int | Null Yes
revisionDate StringFilter | String No
kills PlayerKillListRelationFilter No
deaths PlayerKillListRelationFilter No
teams TeamListRelationFilter No
profile ProfileRelationFilter | ProfileWhereInput | Null Yes
profileId StringNullableFilter | String | Null Yes
monsterKills TeamMonsterKillListRelationFilter No
buildingKills TeamBuildingKillListRelationFilter No
itemEvent PlayerItemEventListRelationFilter No
endOfGameStats PlayerEndOfGameStatListRelationFilter No
snapshots PlayerSnapshotListRelationFilter No
wardEvents PlayerWardEventListRelationFilter No
skillLevelUpEvents PlayerSkillLevelUpEventListRelationFilter No

PlayerOrderByWithRelationInput

Name Type Nullable
id SortOrder No
puuid SortOrder No
accountId SortOrder No
platformId SortOrder No
summonerId SortOrder No
summonerName SortOrder No
summonerLevel SortOrder No
profileIconId SortOrder No
revisionDate SortOrder No
kills PlayerKillOrderByRelationAggregateInput No
deaths PlayerKillOrderByRelationAggregateInput No
teams TeamOrderByRelationAggregateInput No
profile ProfileOrderByWithRelationInput No
profileId SortOrder No
monsterKills TeamMonsterKillOrderByRelationAggregateInput No
buildingKills TeamBuildingKillOrderByRelationAggregateInput No
itemEvent PlayerItemEventOrderByRelationAggregateInput No
endOfGameStats PlayerEndOfGameStatOrderByRelationAggregateInput No
snapshots PlayerSnapshotOrderByRelationAggregateInput No
wardEvents PlayerWardEventOrderByRelationAggregateInput No
skillLevelUpEvents PlayerSkillLevelUpEventOrderByRelationAggregateInput No

PlayerWhereUniqueInput

Name Type Nullable
id String No
puuid String No
accountId String No
summonerId String No
profileId String No

PlayerOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
puuid SortOrder No
accountId SortOrder No
platformId SortOrder No
summonerId SortOrder No
summonerName SortOrder No
summonerLevel SortOrder No
profileIconId SortOrder No
revisionDate SortOrder No
profileId SortOrder No
_count PlayerCountOrderByAggregateInput No
_avg PlayerAvgOrderByAggregateInput No
_max PlayerMaxOrderByAggregateInput No
_min PlayerMinOrderByAggregateInput No
_sum PlayerSumOrderByAggregateInput No

PlayerScalarWhereWithAggregatesInput

Name Type Nullable
AND PlayerScalarWhereWithAggregatesInput | PlayerScalarWhereWithAggregatesInput[] No
OR PlayerScalarWhereWithAggregatesInput[] No
NOT PlayerScalarWhereWithAggregatesInput | PlayerScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
puuid StringWithAggregatesFilter | String No
accountId StringWithAggregatesFilter | String No
platformId StringWithAggregatesFilter | String No
summonerId StringWithAggregatesFilter | String No
summonerName StringWithAggregatesFilter | String No
summonerLevel IntNullableWithAggregatesFilter | Int | Null Yes
profileIconId IntNullableWithAggregatesFilter | Int | Null Yes
revisionDate StringWithAggregatesFilter | String No
profileId StringNullableWithAggregatesFilter | String | Null Yes

PlayerEndOfGameStatWhereInput

Name Type Nullable
AND PlayerEndOfGameStatWhereInput | PlayerEndOfGameStatWhereInput[] No
OR PlayerEndOfGameStatWhereInput[] No
NOT PlayerEndOfGameStatWhereInput | PlayerEndOfGameStatWhereInput[] No
id StringFilter | String No
player PlayerRelationFilter | PlayerWhereInput | Null Yes
playerId StringNullableFilter | String | Null Yes
game GameRelationFilter | GameWhereInput | Null Yes
gameId StringNullableFilter | String | Null Yes
perks PlayerRuneRelationFilter | PlayerRuneWhereInput | Null Yes
perksId StringNullableFilter | String | Null Yes
items PlayerItemRelationFilter | PlayerItemWhereInput | Null Yes
itemsId StringNullableFilter | String | Null Yes
assists IntNullableFilter | Int | Null Yes
baronKills IntNullableFilter | Int | Null Yes
bountyLevel IntNullableFilter | Int | Null Yes
championExperience IntNullableFilter | Int | Null Yes
championLevel IntNullableFilter | Int | Null Yes
championId IntNullableFilter | Int | Null Yes
championName StringFilter | String No
championTransform IntNullableFilter | Int | Null Yes
consumablesPurchased IntNullableFilter | Int | Null Yes
damageDealtToBuildings IntNullableFilter | Int | Null Yes
damageDealtToObjectives IntNullableFilter | Int | Null Yes
damageDealtToTurrets IntNullableFilter | Int | Null Yes
damageSelfMitigated IntNullableFilter | Int | Null Yes
deaths IntNullableFilter | Int | Null Yes
detectorWardsPlaced IntNullableFilter | Int | Null Yes
doubleKills IntNullableFilter | Int | Null Yes
dragonKills IntNullableFilter | Int | Null Yes
firstBlood BoolFilter | Boolean No
firstBloodAssist BoolFilter | Boolean No
firstTowerKill BoolFilter | Boolean No
firstTowerAssist BoolFilter | Boolean No
gameEndedInEarlySurrender BoolFilter | Boolean No
gameEndedInSurrender BoolFilter | Boolean No
goldEarned IntNullableFilter | Int | Null Yes
goldSpent IntNullableFilter | Int | Null Yes
individualPosition StringFilter | String No
inhibitorKills IntNullableFilter | Int | Null Yes
inhibitorTakedowns IntNullableFilter | Int | Null Yes
inhibitorsLost IntNullableFilter | Int | Null Yes
item0 IntNullableFilter | Int | Null Yes
item1 IntNullableFilter | Int | Null Yes
item2 IntNullableFilter | Int | Null Yes
item3 IntNullableFilter | Int | Null Yes
item4 IntNullableFilter | Int | Null Yes
item5 IntNullableFilter | Int | Null Yes
item6 IntNullableFilter | Int | Null Yes
itemsPurchased IntNullableFilter | Int | Null Yes
killingSprees IntNullableFilter | Int | Null Yes
kills IntNullableFilter | Int | Null Yes
lane StringFilter | String No
largestCriticalStrike IntNullableFilter | Int | Null Yes
largestKillingSpree IntNullableFilter | Int | Null Yes
largestMultiKill IntNullableFilter | Int | Null Yes
longestTimeSpentLiving IntNullableFilter | Int | Null Yes
magicDamageDealt IntNullableFilter | Int | Null Yes
magicDamageDealtToChampions IntNullableFilter | Int | Null Yes
magicDamageTaken IntNullableFilter | Int | Null Yes
neutralMinionsKilled IntNullableFilter | Int | Null Yes
nexusKills IntNullableFilter | Int | Null Yes
nexusLost IntNullableFilter | Int | Null Yes
nexusTakedowns IntNullableFilter | Int | Null Yes
objectivesStolen IntNullableFilter | Int | Null Yes
objectivesStolenAssists IntNullableFilter | Int | Null Yes
participantId IntNullableFilter | Int | Null Yes
pentaKills IntNullableFilter | Int | Null Yes
physicalDamageDealt IntNullableFilter | Int | Null Yes
physicalDamageDealtToChampions IntNullableFilter | Int | Null Yes
physicalDamageTaken IntNullableFilter | Int | Null Yes
quadraKills IntNullableFilter | Int | Null Yes
riotIdName StringFilter | String No
riotIdTagline StringFilter | String No
role StringFilter | String No
sightWardsBoughtInGame IntNullableFilter | Int | Null Yes
spell1Casts IntNullableFilter | Int | Null Yes
spell2Casts IntNullableFilter | Int | Null Yes
spell3Casts IntNullableFilter | Int | Null Yes
spell4Casts IntNullableFilter | Int | Null Yes
summoner1Casts IntNullableFilter | Int | Null Yes
summoner1Id IntNullableFilter | Int | Null Yes
summoner2Casts IntNullableFilter | Int | Null Yes
summoner2Id IntNullableFilter | Int | Null Yes
summonerLevel IntNullableFilter | Int | Null Yes
summonerName StringFilter | String No
teamEarlySurrendered BoolFilter | Boolean No
teamId IntNullableFilter | Int | Null Yes
teamPosition StringFilter | String No
timeCCingOthers IntNullableFilter | Int | Null Yes
timePlayed IntNullableFilter | Int | Null Yes
totalDamageDealt IntNullableFilter | Int | Null Yes
totalDamageDealtToChampions IntNullableFilter | Int | Null Yes
totalDamageShieldedOnTeammates IntNullableFilter | Int | Null Yes
totalDamageTaken IntNullableFilter | Int | Null Yes
totalHeal IntNullableFilter | Int | Null Yes
totalHealsOnTeammates IntNullableFilter | Int | Null Yes
totalMinionsKilled IntNullableFilter | Int | Null Yes
totalTimeCCDealt IntNullableFilter | Int | Null Yes
totalTimeSpentDead IntNullableFilter | Int | Null Yes
totalUnitsHealed IntNullableFilter | Int | Null Yes
tripleKills IntNullableFilter | Int | Null Yes
trueDamageDealt IntNullableFilter | Int | Null Yes
trueDamageDealtToChampions IntNullableFilter | Int | Null Yes
trueDamageTaken IntNullableFilter | Int | Null Yes
turretsKilled IntNullableFilter | Int | Null Yes
turretTakedowns IntNullableFilter | Int | Null Yes
turretsLost IntNullableFilter | Int | Null Yes
unrealKills IntNullableFilter | Int | Null Yes
visionScore IntNullableFilter | Int | Null Yes
visionWardsBoughtInGame IntNullableFilter | Int | Null Yes
wardsKilled IntNullableFilter | Int | Null Yes
wardsPlaced IntNullableFilter | Int | Null Yes
win BoolFilter | Boolean No

PlayerEndOfGameStatOrderByWithRelationInput

Name Type Nullable
id SortOrder No
player PlayerOrderByWithRelationInput No
playerId SortOrder No
game GameOrderByWithRelationInput No
gameId SortOrder No
perks PlayerRuneOrderByWithRelationInput No
perksId SortOrder No
items PlayerItemOrderByWithRelationInput No
itemsId SortOrder No
assists SortOrder No
baronKills SortOrder No
bountyLevel SortOrder No
championExperience SortOrder No
championLevel SortOrder No
championId SortOrder No
championName SortOrder No
championTransform SortOrder No
consumablesPurchased SortOrder No
damageDealtToBuildings SortOrder No
damageDealtToObjectives SortOrder No
damageDealtToTurrets SortOrder No
damageSelfMitigated SortOrder No
deaths SortOrder No
detectorWardsPlaced SortOrder No
doubleKills SortOrder No
dragonKills SortOrder No
firstBlood SortOrder No
firstBloodAssist SortOrder No
firstTowerKill SortOrder No
firstTowerAssist SortOrder No
gameEndedInEarlySurrender SortOrder No
gameEndedInSurrender SortOrder No
goldEarned SortOrder No
goldSpent SortOrder No
individualPosition SortOrder No
inhibitorKills SortOrder No
inhibitorTakedowns SortOrder No
inhibitorsLost SortOrder No
item0 SortOrder No
item1 SortOrder No
item2 SortOrder No
item3 SortOrder No
item4 SortOrder No
item5 SortOrder No
item6 SortOrder No
itemsPurchased SortOrder No
killingSprees SortOrder No
kills SortOrder No
lane SortOrder No
largestCriticalStrike SortOrder No
largestKillingSpree SortOrder No
largestMultiKill SortOrder No
longestTimeSpentLiving SortOrder No
magicDamageDealt SortOrder No
magicDamageDealtToChampions SortOrder No
magicDamageTaken SortOrder No
neutralMinionsKilled SortOrder No
nexusKills SortOrder No
nexusLost SortOrder No
nexusTakedowns SortOrder No
objectivesStolen SortOrder No
objectivesStolenAssists SortOrder No
participantId SortOrder No
pentaKills SortOrder No
physicalDamageDealt SortOrder No
physicalDamageDealtToChampions SortOrder No
physicalDamageTaken SortOrder No
quadraKills SortOrder No
riotIdName SortOrder No
riotIdTagline SortOrder No
role SortOrder No
sightWardsBoughtInGame SortOrder No
spell1Casts SortOrder No
spell2Casts SortOrder No
spell3Casts SortOrder No
spell4Casts SortOrder No
summoner1Casts SortOrder No
summoner1Id SortOrder No
summoner2Casts SortOrder No
summoner2Id SortOrder No
summonerLevel SortOrder No
summonerName SortOrder No
teamEarlySurrendered SortOrder No
teamId SortOrder No
teamPosition SortOrder No
timeCCingOthers SortOrder No
timePlayed SortOrder No
totalDamageDealt SortOrder No
totalDamageDealtToChampions SortOrder No
totalDamageShieldedOnTeammates SortOrder No
totalDamageTaken SortOrder No
totalHeal SortOrder No
totalHealsOnTeammates SortOrder No
totalMinionsKilled SortOrder No
totalTimeCCDealt SortOrder No
totalTimeSpentDead SortOrder No
totalUnitsHealed SortOrder No
tripleKills SortOrder No
trueDamageDealt SortOrder No
trueDamageDealtToChampions SortOrder No
trueDamageTaken SortOrder No
turretsKilled SortOrder No
turretTakedowns SortOrder No
turretsLost SortOrder No
unrealKills SortOrder No
visionScore SortOrder No
visionWardsBoughtInGame SortOrder No
wardsKilled SortOrder No
wardsPlaced SortOrder No
win SortOrder No

PlayerEndOfGameStatWhereUniqueInput

Name Type Nullable
id String No
perksId String No

PlayerEndOfGameStatOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
playerId SortOrder No
gameId SortOrder No
perksId SortOrder No
itemsId SortOrder No
assists SortOrder No
baronKills SortOrder No
bountyLevel SortOrder No
championExperience SortOrder No
championLevel SortOrder No
championId SortOrder No
championName SortOrder No
championTransform SortOrder No
consumablesPurchased SortOrder No
damageDealtToBuildings SortOrder No
damageDealtToObjectives SortOrder No
damageDealtToTurrets SortOrder No
damageSelfMitigated SortOrder No
deaths SortOrder No
detectorWardsPlaced SortOrder No
doubleKills SortOrder No
dragonKills SortOrder No
firstBlood SortOrder No
firstBloodAssist SortOrder No
firstTowerKill SortOrder No
firstTowerAssist SortOrder No
gameEndedInEarlySurrender SortOrder No
gameEndedInSurrender SortOrder No
goldEarned SortOrder No
goldSpent SortOrder No
individualPosition SortOrder No
inhibitorKills SortOrder No
inhibitorTakedowns SortOrder No
inhibitorsLost SortOrder No
item0 SortOrder No
item1 SortOrder No
item2 SortOrder No
item3 SortOrder No
item4 SortOrder No
item5 SortOrder No
item6 SortOrder No
itemsPurchased SortOrder No
killingSprees SortOrder No
kills SortOrder No
lane SortOrder No
largestCriticalStrike SortOrder No
largestKillingSpree SortOrder No
largestMultiKill SortOrder No
longestTimeSpentLiving SortOrder No
magicDamageDealt SortOrder No
magicDamageDealtToChampions SortOrder No
magicDamageTaken SortOrder No
neutralMinionsKilled SortOrder No
nexusKills SortOrder No
nexusLost SortOrder No
nexusTakedowns SortOrder No
objectivesStolen SortOrder No
objectivesStolenAssists SortOrder No
participantId SortOrder No
pentaKills SortOrder No
physicalDamageDealt SortOrder No
physicalDamageDealtToChampions SortOrder No
physicalDamageTaken SortOrder No
quadraKills SortOrder No
riotIdName SortOrder No
riotIdTagline SortOrder No
role SortOrder No
sightWardsBoughtInGame SortOrder No
spell1Casts SortOrder No
spell2Casts SortOrder No
spell3Casts SortOrder No
spell4Casts SortOrder No
summoner1Casts SortOrder No
summoner1Id SortOrder No
summoner2Casts SortOrder No
summoner2Id SortOrder No
summonerLevel SortOrder No
summonerName SortOrder No
teamEarlySurrendered SortOrder No
teamId SortOrder No
teamPosition SortOrder No
timeCCingOthers SortOrder No
timePlayed SortOrder No
totalDamageDealt SortOrder No
totalDamageDealtToChampions SortOrder No
totalDamageShieldedOnTeammates SortOrder No
totalDamageTaken SortOrder No
totalHeal SortOrder No
totalHealsOnTeammates SortOrder No
totalMinionsKilled SortOrder No
totalTimeCCDealt SortOrder No
totalTimeSpentDead SortOrder No
totalUnitsHealed SortOrder No
tripleKills SortOrder No
trueDamageDealt SortOrder No
trueDamageDealtToChampions SortOrder No
trueDamageTaken SortOrder No
turretsKilled SortOrder No
turretTakedowns SortOrder No
turretsLost SortOrder No
unrealKills SortOrder No
visionScore SortOrder No
visionWardsBoughtInGame SortOrder No
wardsKilled SortOrder No
wardsPlaced SortOrder No
win SortOrder No
_count PlayerEndOfGameStatCountOrderByAggregateInput No
_avg PlayerEndOfGameStatAvgOrderByAggregateInput No
_max PlayerEndOfGameStatMaxOrderByAggregateInput No
_min PlayerEndOfGameStatMinOrderByAggregateInput No
_sum PlayerEndOfGameStatSumOrderByAggregateInput No

PlayerEndOfGameStatScalarWhereWithAggregatesInput

Name Type Nullable
AND PlayerEndOfGameStatScalarWhereWithAggregatesInput | PlayerEndOfGameStatScalarWhereWithAggregatesInput[] No
OR PlayerEndOfGameStatScalarWhereWithAggregatesInput[] No
NOT PlayerEndOfGameStatScalarWhereWithAggregatesInput | PlayerEndOfGameStatScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
playerId StringNullableWithAggregatesFilter | String | Null Yes
gameId StringNullableWithAggregatesFilter | String | Null Yes
perksId StringNullableWithAggregatesFilter | String | Null Yes
itemsId StringNullableWithAggregatesFilter | String | Null Yes
assists IntNullableWithAggregatesFilter | Int | Null Yes
baronKills IntNullableWithAggregatesFilter | Int | Null Yes
bountyLevel IntNullableWithAggregatesFilter | Int | Null Yes
championExperience IntNullableWithAggregatesFilter | Int | Null Yes
championLevel IntNullableWithAggregatesFilter | Int | Null Yes
championId IntNullableWithAggregatesFilter | Int | Null Yes
championName StringWithAggregatesFilter | String No
championTransform IntNullableWithAggregatesFilter | Int | Null Yes
consumablesPurchased IntNullableWithAggregatesFilter | Int | Null Yes
damageDealtToBuildings IntNullableWithAggregatesFilter | Int | Null Yes
damageDealtToObjectives IntNullableWithAggregatesFilter | Int | Null Yes
damageDealtToTurrets IntNullableWithAggregatesFilter | Int | Null Yes
damageSelfMitigated IntNullableWithAggregatesFilter | Int | Null Yes
deaths IntNullableWithAggregatesFilter | Int | Null Yes
detectorWardsPlaced IntNullableWithAggregatesFilter | Int | Null Yes
doubleKills IntNullableWithAggregatesFilter | Int | Null Yes
dragonKills IntNullableWithAggregatesFilter | Int | Null Yes
firstBlood BoolWithAggregatesFilter | Boolean No
firstBloodAssist BoolWithAggregatesFilter | Boolean No
firstTowerKill BoolWithAggregatesFilter | Boolean No
firstTowerAssist BoolWithAggregatesFilter | Boolean No
gameEndedInEarlySurrender BoolWithAggregatesFilter | Boolean No
gameEndedInSurrender BoolWithAggregatesFilter | Boolean No
goldEarned IntNullableWithAggregatesFilter | Int | Null Yes
goldSpent IntNullableWithAggregatesFilter | Int | Null Yes
individualPosition StringWithAggregatesFilter | String No
inhibitorKills IntNullableWithAggregatesFilter | Int | Null Yes
inhibitorTakedowns IntNullableWithAggregatesFilter | Int | Null Yes
inhibitorsLost IntNullableWithAggregatesFilter | Int | Null Yes
item0 IntNullableWithAggregatesFilter | Int | Null Yes
item1 IntNullableWithAggregatesFilter | Int | Null Yes
item2 IntNullableWithAggregatesFilter | Int | Null Yes
item3 IntNullableWithAggregatesFilter | Int | Null Yes
item4 IntNullableWithAggregatesFilter | Int | Null Yes
item5 IntNullableWithAggregatesFilter | Int | Null Yes
item6 IntNullableWithAggregatesFilter | Int | Null Yes
itemsPurchased IntNullableWithAggregatesFilter | Int | Null Yes
killingSprees IntNullableWithAggregatesFilter | Int | Null Yes
kills IntNullableWithAggregatesFilter | Int | Null Yes
lane StringWithAggregatesFilter | String No
largestCriticalStrike IntNullableWithAggregatesFilter | Int | Null Yes
largestKillingSpree IntNullableWithAggregatesFilter | Int | Null Yes
largestMultiKill IntNullableWithAggregatesFilter | Int | Null Yes
longestTimeSpentLiving IntNullableWithAggregatesFilter | Int | Null Yes
magicDamageDealt IntNullableWithAggregatesFilter | Int | Null Yes
magicDamageDealtToChampions IntNullableWithAggregatesFilter | Int | Null Yes
magicDamageTaken IntNullableWithAggregatesFilter | Int | Null Yes
neutralMinionsKilled IntNullableWithAggregatesFilter | Int | Null Yes
nexusKills IntNullableWithAggregatesFilter | Int | Null Yes
nexusLost IntNullableWithAggregatesFilter | Int | Null Yes
nexusTakedowns IntNullableWithAggregatesFilter | Int | Null Yes
objectivesStolen IntNullableWithAggregatesFilter | Int | Null Yes
objectivesStolenAssists IntNullableWithAggregatesFilter | Int | Null Yes
participantId IntNullableWithAggregatesFilter | Int | Null Yes
pentaKills IntNullableWithAggregatesFilter | Int | Null Yes
physicalDamageDealt IntNullableWithAggregatesFilter | Int | Null Yes
physicalDamageDealtToChampions IntNullableWithAggregatesFilter | Int | Null Yes
physicalDamageTaken IntNullableWithAggregatesFilter | Int | Null Yes
quadraKills IntNullableWithAggregatesFilter | Int | Null Yes
riotIdName StringWithAggregatesFilter | String No
riotIdTagline StringWithAggregatesFilter | String No
role StringWithAggregatesFilter | String No
sightWardsBoughtInGame IntNullableWithAggregatesFilter | Int | Null Yes
spell1Casts IntNullableWithAggregatesFilter | Int | Null Yes
spell2Casts IntNullableWithAggregatesFilter | Int | Null Yes
spell3Casts IntNullableWithAggregatesFilter | Int | Null Yes
spell4Casts IntNullableWithAggregatesFilter | Int | Null Yes
summoner1Casts IntNullableWithAggregatesFilter | Int | Null Yes
summoner1Id IntNullableWithAggregatesFilter | Int | Null Yes
summoner2Casts IntNullableWithAggregatesFilter | Int | Null Yes
summoner2Id IntNullableWithAggregatesFilter | Int | Null Yes
summonerLevel IntNullableWithAggregatesFilter | Int | Null Yes
summonerName StringWithAggregatesFilter | String No
teamEarlySurrendered BoolWithAggregatesFilter | Boolean No
teamId IntNullableWithAggregatesFilter | Int | Null Yes
teamPosition StringWithAggregatesFilter | String No
timeCCingOthers IntNullableWithAggregatesFilter | Int | Null Yes
timePlayed IntNullableWithAggregatesFilter | Int | Null Yes
totalDamageDealt IntNullableWithAggregatesFilter | Int | Null Yes
totalDamageDealtToChampions IntNullableWithAggregatesFilter | Int | Null Yes
totalDamageShieldedOnTeammates IntNullableWithAggregatesFilter | Int | Null Yes
totalDamageTaken IntNullableWithAggregatesFilter | Int | Null Yes
totalHeal IntNullableWithAggregatesFilter | Int | Null Yes
totalHealsOnTeammates IntNullableWithAggregatesFilter | Int | Null Yes
totalMinionsKilled IntNullableWithAggregatesFilter | Int | Null Yes
totalTimeCCDealt IntNullableWithAggregatesFilter | Int | Null Yes
totalTimeSpentDead IntNullableWithAggregatesFilter | Int | Null Yes
totalUnitsHealed IntNullableWithAggregatesFilter | Int | Null Yes
tripleKills IntNullableWithAggregatesFilter | Int | Null Yes
trueDamageDealt IntNullableWithAggregatesFilter | Int | Null Yes
trueDamageDealtToChampions IntNullableWithAggregatesFilter | Int | Null Yes
trueDamageTaken IntNullableWithAggregatesFilter | Int | Null Yes
turretsKilled IntNullableWithAggregatesFilter | Int | Null Yes
turretTakedowns IntNullableWithAggregatesFilter | Int | Null Yes
turretsLost IntNullableWithAggregatesFilter | Int | Null Yes
unrealKills IntNullableWithAggregatesFilter | Int | Null Yes
visionScore IntNullableWithAggregatesFilter | Int | Null Yes
visionWardsBoughtInGame IntNullableWithAggregatesFilter | Int | Null Yes
wardsKilled IntNullableWithAggregatesFilter | Int | Null Yes
wardsPlaced IntNullableWithAggregatesFilter | Int | Null Yes
win BoolWithAggregatesFilter | Boolean No

PlayerItemWhereInput

Name Type Nullable
AND PlayerItemWhereInput | PlayerItemWhereInput[] No
OR PlayerItemWhereInput[] No
NOT PlayerItemWhereInput | PlayerItemWhereInput[] No
id StringFilter | String No
slot IntNullableFilter | Int | Null Yes
itemId IntNullableFilter | Int | Null Yes
name StringFilter | String No
playerEndOfGameStat PlayerEndOfGameStatListRelationFilter No

PlayerItemOrderByWithRelationInput

Name Type Nullable
id SortOrder No
slot SortOrder No
itemId SortOrder No
name SortOrder No
playerEndOfGameStat PlayerEndOfGameStatOrderByRelationAggregateInput No

PlayerItemWhereUniqueInput

Name Type Nullable
id String No

PlayerItemOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
slot SortOrder No
itemId SortOrder No
name SortOrder No
_count PlayerItemCountOrderByAggregateInput No
_avg PlayerItemAvgOrderByAggregateInput No
_max PlayerItemMaxOrderByAggregateInput No
_min PlayerItemMinOrderByAggregateInput No
_sum PlayerItemSumOrderByAggregateInput No


PlayerItemEventWhereInput

Name Type Nullable
AND PlayerItemEventWhereInput | PlayerItemEventWhereInput[] No
OR PlayerItemEventWhereInput[] No
NOT PlayerItemEventWhereInput | PlayerItemEventWhereInput[] No
id StringFilter | String No
player PlayerListRelationFilter No
type StringFilter | String No
itemId IntNullableFilter | Int | Null Yes
name StringFilter | String No
undoId IntNullableFilter | Int | Null Yes

PlayerItemEventOrderByWithRelationInput

Name Type Nullable
id SortOrder No
player PlayerOrderByRelationAggregateInput No
type SortOrder No
itemId SortOrder No
name SortOrder No
undoId SortOrder No

PlayerItemEventWhereUniqueInput

Name Type Nullable
id String No




PlayerKillOrderByWithRelationInput

Name Type Nullable
id SortOrder No
killer PlayerOrderByRelationAggregateInput No
victim PlayerOrderByRelationAggregateInput No

PlayerKillWhereUniqueInput

Name Type Nullable
id String No

PlayerKillOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
_count PlayerKillCountOrderByAggregateInput No
_max PlayerKillMaxOrderByAggregateInput No
_min PlayerKillMinOrderByAggregateInput No


PlayerRuneWhereInput

Name Type Nullable
AND PlayerRuneWhereInput | PlayerRuneWhereInput[] No
OR PlayerRuneWhereInput[] No
NOT PlayerRuneWhereInput | PlayerRuneWhereInput[] No
id StringFilter | String No
playerEndOfGameStat PlayerEndOfGameStatRelationFilter | PlayerEndOfGameStatWhereInput | Null Yes
runeStyle RuneStyleListRelationFilter No
defense IntNullableFilter | Int | Null Yes
flex IntNullableFilter | Int | Null Yes
offense IntNullableFilter | Int | Null Yes

PlayerRuneOrderByWithRelationInput

Name Type Nullable
id SortOrder No
playerEndOfGameStat PlayerEndOfGameStatOrderByWithRelationInput No
runeStyle RuneStyleOrderByRelationAggregateInput No
defense SortOrder No
flex SortOrder No
offense SortOrder No

PlayerRuneWhereUniqueInput

Name Type Nullable
id String No

PlayerRuneOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
defense SortOrder No
flex SortOrder No
offense SortOrder No
_count PlayerRuneCountOrderByAggregateInput No
_avg PlayerRuneAvgOrderByAggregateInput No
_max PlayerRuneMaxOrderByAggregateInput No
_min PlayerRuneMinOrderByAggregateInput No
_sum PlayerRuneSumOrderByAggregateInput No



PlayerSkillLevelUpEventOrderByWithRelationInput

Name Type Nullable
id SortOrder No
player PlayerOrderByRelationAggregateInput No
type SortOrder No
slot SortOrder No

PlayerSkillLevelUpEventWhereUniqueInput

Name Type Nullable
id String No



PlayerSnapshotWhereInput

Name Type Nullable
AND PlayerSnapshotWhereInput | PlayerSnapshotWhereInput[] No
OR PlayerSnapshotWhereInput[] No
NOT PlayerSnapshotWhereInput | PlayerSnapshotWhereInput[] No
id StringFilter | String No
timestamp FloatNullableFilter | Float | Null Yes
currentGold IntNullableFilter | Int | Null Yes
totalGold IntNullableFilter | Int | Null Yes
totalGoldDiff IntNullableFilter | Int | Null Yes
xp IntNullableFilter | Int | Null Yes
xpDiff IntNullableFilter | Int | Null Yes
level IntNullableFilter | Int | Null Yes
cs IntNullableFilter | Int | Null Yes
csDiff IntNullableFilter | Int | Null Yes
monstersKilled IntNullableFilter | Int | Null Yes
monstersKilledDiff IntNullableFilter | Int | Null Yes
position PositionListRelationFilter No
player PlayerListRelationFilter No

PlayerSnapshotOrderByWithRelationInput

Name Type Nullable
id SortOrder No
timestamp SortOrder No
currentGold SortOrder No
totalGold SortOrder No
totalGoldDiff SortOrder No
xp SortOrder No
xpDiff SortOrder No
level SortOrder No
cs SortOrder No
csDiff SortOrder No
monstersKilled SortOrder No
monstersKilledDiff SortOrder No
position PositionOrderByRelationAggregateInput No
player PlayerOrderByRelationAggregateInput No

PlayerSnapshotWhereUniqueInput

Name Type Nullable
id String No

PlayerSnapshotOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
timestamp SortOrder No
currentGold SortOrder No
totalGold SortOrder No
totalGoldDiff SortOrder No
xp SortOrder No
xpDiff SortOrder No
level SortOrder No
cs SortOrder No
csDiff SortOrder No
monstersKilled SortOrder No
monstersKilledDiff SortOrder No
_count PlayerSnapshotCountOrderByAggregateInput No
_avg PlayerSnapshotAvgOrderByAggregateInput No
_max PlayerSnapshotMaxOrderByAggregateInput No
_min PlayerSnapshotMinOrderByAggregateInput No
_sum PlayerSnapshotSumOrderByAggregateInput No

PlayerSnapshotScalarWhereWithAggregatesInput

Name Type Nullable
AND PlayerSnapshotScalarWhereWithAggregatesInput | PlayerSnapshotScalarWhereWithAggregatesInput[] No
OR PlayerSnapshotScalarWhereWithAggregatesInput[] No
NOT PlayerSnapshotScalarWhereWithAggregatesInput | PlayerSnapshotScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
timestamp FloatNullableWithAggregatesFilter | Float | Null Yes
currentGold IntNullableWithAggregatesFilter | Int | Null Yes
totalGold IntNullableWithAggregatesFilter | Int | Null Yes
totalGoldDiff IntNullableWithAggregatesFilter | Int | Null Yes
xp IntNullableWithAggregatesFilter | Int | Null Yes
xpDiff IntNullableWithAggregatesFilter | Int | Null Yes
level IntNullableWithAggregatesFilter | Int | Null Yes
cs IntNullableWithAggregatesFilter | Int | Null Yes
csDiff IntNullableWithAggregatesFilter | Int | Null Yes
monstersKilled IntNullableWithAggregatesFilter | Int | Null Yes
monstersKilledDiff IntNullableWithAggregatesFilter | Int | Null Yes


PlayerWardEventOrderByWithRelationInput

Name Type Nullable
id SortOrder No
player PlayerOrderByRelationAggregateInput No
type SortOrder No
wardType SortOrder No

PlayerWardEventWhereUniqueInput

Name Type Nullable
id String No

PlayerWardEventOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
type SortOrder No
wardType SortOrder No
_count PlayerWardEventCountOrderByAggregateInput No
_max PlayerWardEventMaxOrderByAggregateInput No
_min PlayerWardEventMinOrderByAggregateInput No


PositionWhereInput

Name Type Nullable
AND PositionWhereInput | PositionWhereInput[] No
OR PositionWhereInput[] No
NOT PositionWhereInput | PositionWhereInput[] No
id StringFilter | String No
event EventListRelationFilter No
x IntNullableFilter | Int | Null Yes
y IntNullableFilter | Int | Null Yes
playerSnapshot PlayerSnapshotListRelationFilter No

PositionOrderByWithRelationInput

Name Type Nullable
id SortOrder No
event EventOrderByRelationAggregateInput No
x SortOrder No
y SortOrder No
playerSnapshot PlayerSnapshotOrderByRelationAggregateInput No

PositionWhereUniqueInput

Name Type Nullable
id String No



ProfileWhereInput

Name Type Nullable
AND ProfileWhereInput | ProfileWhereInput[] No
OR ProfileWhereInput[] No
NOT ProfileWhereInput | ProfileWhereInput[] No
id StringFilter | String No
update BoolFilter | Boolean No
player PlayerRelationFilter | PlayerWhereInput | Null Yes
lastUpdate DateTimeFilter | DateTime No
kills IntNullableFilter | Int | Null Yes
deaths IntNullableFilter | Int | Null Yes
assists IntNullableFilter | Int | Null Yes
kda StringFilter | String No
winRate StringFilter | String No
csPerMinute StringFilter | String No
damagePerMinute StringFilter | String No
killsPerMinute StringFilter | String No
goldPerMinute StringFilter | String No
averageGameTime StringFilter | String No
averageTimeSpentDead StringFilter | String No
totalGameTime StringFilter | String No
activity ActivityListRelationFilter No
championWinrate ChampionWinrateListRelationFilter No
duos DuoListRelationFilter No

ProfileOrderByWithRelationInput

Name Type Nullable
id SortOrder No
update SortOrder No
player PlayerOrderByWithRelationInput No
lastUpdate SortOrder No
kills SortOrder No
deaths SortOrder No
assists SortOrder No
kda SortOrder No
winRate SortOrder No
csPerMinute SortOrder No
damagePerMinute SortOrder No
killsPerMinute SortOrder No
goldPerMinute SortOrder No
averageGameTime SortOrder No
averageTimeSpentDead SortOrder No
totalGameTime SortOrder No
activity ActivityOrderByRelationAggregateInput No
championWinrate ChampionWinrateOrderByRelationAggregateInput No
duos DuoOrderByRelationAggregateInput No

ProfileWhereUniqueInput

Name Type Nullable
id String No

ProfileOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
update SortOrder No
lastUpdate SortOrder No
kills SortOrder No
deaths SortOrder No
assists SortOrder No
kda SortOrder No
winRate SortOrder No
csPerMinute SortOrder No
damagePerMinute SortOrder No
killsPerMinute SortOrder No
goldPerMinute SortOrder No
averageGameTime SortOrder No
averageTimeSpentDead SortOrder No
totalGameTime SortOrder No
_count ProfileCountOrderByAggregateInput No
_avg ProfileAvgOrderByAggregateInput No
_max ProfileMaxOrderByAggregateInput No
_min ProfileMinOrderByAggregateInput No
_sum ProfileSumOrderByAggregateInput No

ProfileScalarWhereWithAggregatesInput

Name Type Nullable
AND ProfileScalarWhereWithAggregatesInput | ProfileScalarWhereWithAggregatesInput[] No
OR ProfileScalarWhereWithAggregatesInput[] No
NOT ProfileScalarWhereWithAggregatesInput | ProfileScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
update BoolWithAggregatesFilter | Boolean No
lastUpdate DateTimeWithAggregatesFilter | DateTime No
kills IntNullableWithAggregatesFilter | Int | Null Yes
deaths IntNullableWithAggregatesFilter | Int | Null Yes
assists IntNullableWithAggregatesFilter | Int | Null Yes
kda StringWithAggregatesFilter | String No
winRate StringWithAggregatesFilter | String No
csPerMinute StringWithAggregatesFilter | String No
damagePerMinute StringWithAggregatesFilter | String No
killsPerMinute StringWithAggregatesFilter | String No
goldPerMinute StringWithAggregatesFilter | String No
averageGameTime StringWithAggregatesFilter | String No
averageTimeSpentDead StringWithAggregatesFilter | String No
totalGameTime StringWithAggregatesFilter | String No

SeedIdentifierWhereInput

Name Type Nullable
AND SeedIdentifierWhereInput | SeedIdentifierWhereInput[] No
OR SeedIdentifierWhereInput[] No
NOT SeedIdentifierWhereInput | SeedIdentifierWhereInput[] No
id StringFilter | String No
identifier StringFilter | String No
type StringFilter | String No
timestamp DateTimeFilter | DateTime No
priority BoolFilter | Boolean No
retrieved BoolFilter | Boolean No

SeedIdentifierOrderByWithRelationInput

Name Type Nullable
id SortOrder No
identifier SortOrder No
type SortOrder No
timestamp SortOrder No
priority SortOrder No
retrieved SortOrder No

SeedIdentifierWhereUniqueInput

Name Type Nullable
id String No
identifier String No

SeedIdentifierOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
identifier SortOrder No
type SortOrder No
timestamp SortOrder No
priority SortOrder No
retrieved SortOrder No
_count SeedIdentifierCountOrderByAggregateInput No
_max SeedIdentifierMaxOrderByAggregateInput No
_min SeedIdentifierMinOrderByAggregateInput No


SourceWhereInput

Name Type Nullable
AND SourceWhereInput | SourceWhereInput[] No
OR SourceWhereInput[] No
NOT SourceWhereInput | SourceWhereInput[] No
id StringFilter | String No
game GameListRelationFilter No
api StringFilter | String No

SourceOrderByWithRelationInput

Name Type Nullable
id SortOrder No
game GameOrderByRelationAggregateInput No
api SortOrder No

SourceWhereUniqueInput

Name Type Nullable
id String No

SourceOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
api SortOrder No
_count SourceCountOrderByAggregateInput No
_max SourceMaxOrderByAggregateInput No
_min SourceMinOrderByAggregateInput No


TeamWhereInput

Name Type Nullable
AND TeamWhereInput | TeamWhereInput[] No
OR TeamWhereInput[] No
NOT TeamWhereInput | TeamWhereInput[] No
id StringFilter | String No
pickBan PickBanListRelationFilter No
game GameRelationFilter | GameWhereInput | Null Yes
gameId StringNullableFilter | String | Null Yes
players PlayerListRelationFilter No
objectives ObjectiveListRelationFilter No
teamId IntNullableFilter | Int | Null Yes
teamMatchId StringFilter | String No
win BoolFilter | Boolean No
from_Game_blueTeam GameListRelationFilter No
from_Game_redTeam GameListRelationFilter No

TeamOrderByWithRelationInput

Name Type Nullable
id SortOrder No
pickBan PickBanOrderByRelationAggregateInput No
game GameOrderByWithRelationInput No
gameId SortOrder No
players PlayerOrderByRelationAggregateInput No
objectives ObjectiveOrderByRelationAggregateInput No
teamId SortOrder No
teamMatchId SortOrder No
win SortOrder No
from_Game_blueTeam GameOrderByRelationAggregateInput No
from_Game_redTeam GameOrderByRelationAggregateInput No

TeamWhereUniqueInput

Name Type Nullable
id String No
teamMatchId String No

TeamOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
gameId SortOrder No
teamId SortOrder No
teamMatchId SortOrder No
win SortOrder No
_count TeamCountOrderByAggregateInput No
_avg TeamAvgOrderByAggregateInput No
_max TeamMaxOrderByAggregateInput No
_min TeamMinOrderByAggregateInput No
_sum TeamSumOrderByAggregateInput No


TeamBuildingKillWhereInput

Name Type Nullable
AND TeamBuildingKillWhereInput | TeamBuildingKillWhereInput[] No
OR TeamBuildingKillWhereInput[] No
NOT TeamBuildingKillWhereInput | TeamBuildingKillWhereInput[] No
id StringFilter | String No
killer PlayerListRelationFilter No
type StringFilter | String No
lane StringFilter | String No
side StringFilter | String No
towerLocation StringFilter | String No

TeamBuildingKillOrderByWithRelationInput

Name Type Nullable
id SortOrder No
killer PlayerOrderByRelationAggregateInput No
type SortOrder No
lane SortOrder No
side SortOrder No
towerLocation SortOrder No

TeamBuildingKillWhereUniqueInput

Name Type Nullable
id String No

TeamBuildingKillOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
type SortOrder No
lane SortOrder No
side SortOrder No
towerLocation SortOrder No
_count TeamBuildingKillCountOrderByAggregateInput No
_max TeamBuildingKillMaxOrderByAggregateInput No
_min TeamBuildingKillMinOrderByAggregateInput No


TeamMonsterKillWhereInput

Name Type Nullable
AND TeamMonsterKillWhereInput | TeamMonsterKillWhereInput[] No
OR TeamMonsterKillWhereInput[] No
NOT TeamMonsterKillWhereInput | TeamMonsterKillWhereInput[] No
id StringFilter | String No
killer PlayerListRelationFilter No
type StringFilter | String No
subType StringFilter | String No

TeamMonsterKillOrderByWithRelationInput

Name Type Nullable
id SortOrder No
killer PlayerOrderByRelationAggregateInput No
type SortOrder No
subType SortOrder No

TeamMonsterKillWhereUniqueInput

Name Type Nullable
id String No

TeamMonsterKillOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
type SortOrder No
subType SortOrder No
_count TeamMonsterKillCountOrderByAggregateInput No
_max TeamMonsterKillMaxOrderByAggregateInput No
_min TeamMonsterKillMinOrderByAggregateInput No


RuneSelectionWhereInput

Name Type Nullable
AND RuneSelectionWhereInput | RuneSelectionWhereInput[] No
OR RuneSelectionWhereInput[] No
NOT RuneSelectionWhereInput | RuneSelectionWhereInput[] No
id StringFilter | String No
runeStyle RuneStyleRelationFilter | RuneStyleWhereInput | Null Yes
runeStyleId StringNullableFilter | String | Null Yes
perk IntNullableFilter | Int | Null Yes
var1 IntNullableFilter | Int | Null Yes
var2 IntNullableFilter | Int | Null Yes
var3 IntNullableFilter | Int | Null Yes

RuneSelectionOrderByWithRelationInput

Name Type Nullable
id SortOrder No
runeStyle RuneStyleOrderByWithRelationInput No
runeStyleId SortOrder No
perk SortOrder No
var1 SortOrder No
var2 SortOrder No
var3 SortOrder No

RuneSelectionWhereUniqueInput

Name Type Nullable
id String No

RuneSelectionOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
runeStyleId SortOrder No
perk SortOrder No
var1 SortOrder No
var2 SortOrder No
var3 SortOrder No
_count RuneSelectionCountOrderByAggregateInput No
_avg RuneSelectionAvgOrderByAggregateInput No
_max RuneSelectionMaxOrderByAggregateInput No
_min RuneSelectionMinOrderByAggregateInput No
_sum RuneSelectionSumOrderByAggregateInput No


RuneStyleWhereInput

Name Type Nullable
AND RuneStyleWhereInput | RuneStyleWhereInput[] No
OR RuneStyleWhereInput[] No
NOT RuneStyleWhereInput | RuneStyleWhereInput[] No
id StringFilter | String No
playerRunes PlayerRuneRelationFilter | PlayerRuneWhereInput | Null Yes
playerRunesId StringNullableFilter | String | Null Yes
selection RuneSelectionListRelationFilter No
description StringFilter | String No
style IntNullableFilter | Int | Null Yes

RuneStyleOrderByWithRelationInput

Name Type Nullable
id SortOrder No
playerRunes PlayerRuneOrderByWithRelationInput No
playerRunesId SortOrder No
selection RuneSelectionOrderByRelationAggregateInput No
description SortOrder No
style SortOrder No

RuneStyleWhereUniqueInput

Name Type Nullable
id String No

RuneStyleOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
playerRunesId SortOrder No
description SortOrder No
style SortOrder No
_count RuneStyleCountOrderByAggregateInput No
_avg RuneStyleAvgOrderByAggregateInput No
_max RuneStyleMaxOrderByAggregateInput No
_min RuneStyleMinOrderByAggregateInput No
_sum RuneStyleSumOrderByAggregateInput No


ActivityCreateInput

Name Type Nullable
id String No
profile ProfileCreateNestedOneWithoutActivityInput No
month Int | Null Yes
year Int | Null Yes
day Int | Null Yes
gamesPlayed Int | Null Yes

ActivityUncheckedCreateInput

Name Type Nullable
id String No
profileId String | Null Yes
month Int | Null Yes
year Int | Null Yes
day Int | Null Yes
gamesPlayed Int | Null Yes

ActivityUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
profile ProfileUpdateOneWithoutActivityInput No
month Int | NullableIntFieldUpdateOperationsInput | Null Yes
year Int | NullableIntFieldUpdateOperationsInput | Null Yes
day Int | NullableIntFieldUpdateOperationsInput | Null Yes
gamesPlayed Int | NullableIntFieldUpdateOperationsInput | Null Yes

ActivityUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
profileId String | NullableStringFieldUpdateOperationsInput | Null Yes
month Int | NullableIntFieldUpdateOperationsInput | Null Yes
year Int | NullableIntFieldUpdateOperationsInput | Null Yes
day Int | NullableIntFieldUpdateOperationsInput | Null Yes
gamesPlayed Int | NullableIntFieldUpdateOperationsInput | Null Yes

ActivityCreateManyInput

Name Type Nullable
id String No
profileId String | Null Yes
month Int | Null Yes
year Int | Null Yes
day Int | Null Yes
gamesPlayed Int | Null Yes

ActivityUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
month Int | NullableIntFieldUpdateOperationsInput | Null Yes
year Int | NullableIntFieldUpdateOperationsInput | Null Yes
day Int | NullableIntFieldUpdateOperationsInput | Null Yes
gamesPlayed Int | NullableIntFieldUpdateOperationsInput | Null Yes

ActivityUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
profileId String | NullableStringFieldUpdateOperationsInput | Null Yes
month Int | NullableIntFieldUpdateOperationsInput | Null Yes
year Int | NullableIntFieldUpdateOperationsInput | Null Yes
day Int | NullableIntFieldUpdateOperationsInput | Null Yes
gamesPlayed Int | NullableIntFieldUpdateOperationsInput | Null Yes

ChampionWinrateCreateInput

Name Type Nullable
id String No
profile ProfileCreateNestedOneWithoutChampionWinrateInput No
champion String No
wins Int | Null Yes
games Int | Null Yes
spell1Casts Int | Null Yes
spell2Casts Int | Null Yes
spell3Casts Int | Null Yes
spell4Casts Int | Null Yes

ChampionWinrateUncheckedCreateInput

Name Type Nullable
id String No
profileId String | Null Yes
champion String No
wins Int | Null Yes
games Int | Null Yes
spell1Casts Int | Null Yes
spell2Casts Int | Null Yes
spell3Casts Int | Null Yes
spell4Casts Int | Null Yes

ChampionWinrateUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
profile ProfileUpdateOneWithoutChampionWinrateInput No
champion String | StringFieldUpdateOperationsInput No
wins Int | NullableIntFieldUpdateOperationsInput | Null Yes
games Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell1Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell2Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell3Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell4Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes

ChampionWinrateUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
profileId String | NullableStringFieldUpdateOperationsInput | Null Yes
champion String | StringFieldUpdateOperationsInput No
wins Int | NullableIntFieldUpdateOperationsInput | Null Yes
games Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell1Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell2Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell3Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell4Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes

ChampionWinrateCreateManyInput

Name Type Nullable
id String No
profileId String | Null Yes
champion String No
wins Int | Null Yes
games Int | Null Yes
spell1Casts Int | Null Yes
spell2Casts Int | Null Yes
spell3Casts Int | Null Yes
spell4Casts Int | Null Yes

ChampionWinrateUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
champion String | StringFieldUpdateOperationsInput No
wins Int | NullableIntFieldUpdateOperationsInput | Null Yes
games Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell1Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell2Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell3Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell4Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes

ChampionWinrateUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
profileId String | NullableStringFieldUpdateOperationsInput | Null Yes
champion String | StringFieldUpdateOperationsInput No
wins Int | NullableIntFieldUpdateOperationsInput | Null Yes
games Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell1Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell2Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell3Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell4Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes

DuoCreateInput

Name Type Nullable
id String No
profile ProfileCreateNestedOneWithoutDuosInput No
name String No
wins Int | Null Yes
losses Int | Null Yes
winrate String No

DuoUncheckedCreateInput

Name Type Nullable
id String No
profileId String | Null Yes
name String No
wins Int | Null Yes
losses Int | Null Yes
winrate String No

DuoUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
profile ProfileUpdateOneWithoutDuosInput No
name String | StringFieldUpdateOperationsInput No
wins Int | NullableIntFieldUpdateOperationsInput | Null Yes
losses Int | NullableIntFieldUpdateOperationsInput | Null Yes
winrate String | StringFieldUpdateOperationsInput No

DuoUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
profileId String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
wins Int | NullableIntFieldUpdateOperationsInput | Null Yes
losses Int | NullableIntFieldUpdateOperationsInput | Null Yes
winrate String | StringFieldUpdateOperationsInput No

DuoCreateManyInput

Name Type Nullable
id String No
profileId String | Null Yes
name String No
wins Int | Null Yes
losses Int | Null Yes
winrate String No

DuoUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
wins Int | NullableIntFieldUpdateOperationsInput | Null Yes
losses Int | NullableIntFieldUpdateOperationsInput | Null Yes
winrate String | StringFieldUpdateOperationsInput No

DuoUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
profileId String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
wins Int | NullableIntFieldUpdateOperationsInput | Null Yes
losses Int | NullableIntFieldUpdateOperationsInput | Null Yes
winrate String | StringFieldUpdateOperationsInput No

ConstantCreateInput

Name Type Nullable
id String No
startTime String No
currentSeason String No
seeding Boolean No

ConstantUncheckedCreateInput

Name Type Nullable
id String No
startTime String No
currentSeason String No
seeding Boolean No

ConstantUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
startTime String | StringFieldUpdateOperationsInput No
currentSeason String | StringFieldUpdateOperationsInput No
seeding Boolean | BoolFieldUpdateOperationsInput No

ConstantUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
startTime String | StringFieldUpdateOperationsInput No
currentSeason String | StringFieldUpdateOperationsInput No
seeding Boolean | BoolFieldUpdateOperationsInput No

ConstantCreateManyInput

Name Type Nullable
id String No
startTime String No
currentSeason String No
seeding Boolean No

ConstantUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
startTime String | StringFieldUpdateOperationsInput No
currentSeason String | StringFieldUpdateOperationsInput No
seeding Boolean | BoolFieldUpdateOperationsInput No

ConstantUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
startTime String | StringFieldUpdateOperationsInput No
currentSeason String | StringFieldUpdateOperationsInput No
seeding Boolean | BoolFieldUpdateOperationsInput No

EventCreateInput

Name Type Nullable
id String No
timestamp Int | Null Yes
position PositionCreateNestedManyWithoutEventInput No

EventUncheckedCreateInput

Name Type Nullable
id String No
timestamp Int | Null Yes
position PositionUncheckedCreateNestedManyWithoutEventInput No

EventUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
timestamp Int | NullableIntFieldUpdateOperationsInput | Null Yes
position PositionUpdateManyWithoutEventInput No

EventUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
timestamp Int | NullableIntFieldUpdateOperationsInput | Null Yes
position PositionUncheckedUpdateManyWithoutEventInput No

EventCreateManyInput

Name Type Nullable
id String No
timestamp Int | Null Yes

EventUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
timestamp Int | NullableIntFieldUpdateOperationsInput | Null Yes

EventUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
timestamp Int | NullableIntFieldUpdateOperationsInput | Null Yes

GameCreateInput

Name Type Nullable
id String No
matchId String No
gameId String No
gameCreation String No
gameStartTimestamp String No
gameEndTimestamp String No
duration Int | Null Yes
start String No
gameVersion String No
blueTeam TeamCreateNestedOneWithoutFrom_Game_blueTeamInput No
redTeam TeamCreateNestedOneWithoutFrom_Game_redTeamInput No
source SourceCreateNestedManyWithoutGameInput No
tournament String No
gameInSeries Int | Null Yes
vod String No
platformId String No
from_PlayerEndOfGameStat_game PlayerEndOfGameStatCreateNestedManyWithoutGameInput No
from_Team_game TeamCreateNestedManyWithoutGameInput No

GameUncheckedCreateInput

Name Type Nullable
id String No
matchId String No
gameId String No
gameCreation String No
gameStartTimestamp String No
gameEndTimestamp String No
duration Int | Null Yes
start String No
gameVersion String No
blueTeamId String | Null Yes
redTeamId String | Null Yes
source SourceUncheckedCreateNestedManyWithoutGameInput No
tournament String No
gameInSeries Int | Null Yes
vod String No
platformId String No
from_PlayerEndOfGameStat_game PlayerEndOfGameStatUncheckedCreateNestedManyWithoutGameInput No
from_Team_game TeamUncheckedCreateNestedManyWithoutGameInput No

GameUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
matchId String | StringFieldUpdateOperationsInput No
gameId String | StringFieldUpdateOperationsInput No
gameCreation String | StringFieldUpdateOperationsInput No
gameStartTimestamp String | StringFieldUpdateOperationsInput No
gameEndTimestamp String | StringFieldUpdateOperationsInput No
duration Int | NullableIntFieldUpdateOperationsInput | Null Yes
start String | StringFieldUpdateOperationsInput No
gameVersion String | StringFieldUpdateOperationsInput No
blueTeam TeamUpdateOneWithoutFrom_Game_blueTeamInput No
redTeam TeamUpdateOneWithoutFrom_Game_redTeamInput No
source SourceUpdateManyWithoutGameInput No
tournament String | StringFieldUpdateOperationsInput No
gameInSeries Int | NullableIntFieldUpdateOperationsInput | Null Yes
vod String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
from_PlayerEndOfGameStat_game PlayerEndOfGameStatUpdateManyWithoutGameInput No
from_Team_game TeamUpdateManyWithoutGameInput No

GameUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
matchId String | StringFieldUpdateOperationsInput No
gameId String | StringFieldUpdateOperationsInput No
gameCreation String | StringFieldUpdateOperationsInput No
gameStartTimestamp String | StringFieldUpdateOperationsInput No
gameEndTimestamp String | StringFieldUpdateOperationsInput No
duration Int | NullableIntFieldUpdateOperationsInput | Null Yes
start String | StringFieldUpdateOperationsInput No
gameVersion String | StringFieldUpdateOperationsInput No
blueTeamId String | NullableStringFieldUpdateOperationsInput | Null Yes
redTeamId String | NullableStringFieldUpdateOperationsInput | Null Yes
source SourceUncheckedUpdateManyWithoutGameInput No
tournament String | StringFieldUpdateOperationsInput No
gameInSeries Int | NullableIntFieldUpdateOperationsInput | Null Yes
vod String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
from_PlayerEndOfGameStat_game PlayerEndOfGameStatUncheckedUpdateManyWithoutGameInput No
from_Team_game TeamUncheckedUpdateManyWithoutGameInput No

GameCreateManyInput

Name Type Nullable
id String No
matchId String No
gameId String No
gameCreation String No
gameStartTimestamp String No
gameEndTimestamp String No
duration Int | Null Yes
start String No
gameVersion String No
blueTeamId String | Null Yes
redTeamId String | Null Yes
tournament String No
gameInSeries Int | Null Yes
vod String No
platformId String No

GameUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
matchId String | StringFieldUpdateOperationsInput No
gameId String | StringFieldUpdateOperationsInput No
gameCreation String | StringFieldUpdateOperationsInput No
gameStartTimestamp String | StringFieldUpdateOperationsInput No
gameEndTimestamp String | StringFieldUpdateOperationsInput No
duration Int | NullableIntFieldUpdateOperationsInput | Null Yes
start String | StringFieldUpdateOperationsInput No
gameVersion String | StringFieldUpdateOperationsInput No
tournament String | StringFieldUpdateOperationsInput No
gameInSeries Int | NullableIntFieldUpdateOperationsInput | Null Yes
vod String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No

GameUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
matchId String | StringFieldUpdateOperationsInput No
gameId String | StringFieldUpdateOperationsInput No
gameCreation String | StringFieldUpdateOperationsInput No
gameStartTimestamp String | StringFieldUpdateOperationsInput No
gameEndTimestamp String | StringFieldUpdateOperationsInput No
duration Int | NullableIntFieldUpdateOperationsInput | Null Yes
start String | StringFieldUpdateOperationsInput No
gameVersion String | StringFieldUpdateOperationsInput No
blueTeamId String | NullableStringFieldUpdateOperationsInput | Null Yes
redTeamId String | NullableStringFieldUpdateOperationsInput | Null Yes
tournament String | StringFieldUpdateOperationsInput No
gameInSeries Int | NullableIntFieldUpdateOperationsInput | Null Yes
vod String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No

ObjectiveCreateInput

Name Type Nullable
id String No
team TeamCreateNestedOneWithoutObjectivesInput No
first Boolean No
kills Int | Null Yes
type String No

ObjectiveUncheckedCreateInput

Name Type Nullable
id String No
teamId String | Null Yes
first Boolean No
kills Int | Null Yes
type String No

ObjectiveUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
team TeamUpdateOneWithoutObjectivesInput No
first Boolean | BoolFieldUpdateOperationsInput No
kills Int | NullableIntFieldUpdateOperationsInput | Null Yes
type String | StringFieldUpdateOperationsInput No

ObjectiveUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
teamId String | NullableStringFieldUpdateOperationsInput | Null Yes
first Boolean | BoolFieldUpdateOperationsInput No
kills Int | NullableIntFieldUpdateOperationsInput | Null Yes
type String | StringFieldUpdateOperationsInput No

ObjectiveCreateManyInput

Name Type Nullable
id String No
teamId String | Null Yes
first Boolean No
kills Int | Null Yes
type String No

ObjectiveUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
first Boolean | BoolFieldUpdateOperationsInput No
kills Int | NullableIntFieldUpdateOperationsInput | Null Yes
type String | StringFieldUpdateOperationsInput No

ObjectiveUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
teamId String | NullableStringFieldUpdateOperationsInput | Null Yes
first Boolean | BoolFieldUpdateOperationsInput No
kills Int | NullableIntFieldUpdateOperationsInput | Null Yes
type String | StringFieldUpdateOperationsInput No

PickBanCreateInput

Name Type Nullable
id String No
team TeamCreateNestedOneWithoutPickBanInput No
championId Int | Null Yes
pickTurn Int | Null Yes

PickBanUncheckedCreateInput

Name Type Nullable
id String No
teamId String | Null Yes
championId Int | Null Yes
pickTurn Int | Null Yes

PickBanUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
team TeamUpdateOneWithoutPickBanInput No
championId Int | NullableIntFieldUpdateOperationsInput | Null Yes
pickTurn Int | NullableIntFieldUpdateOperationsInput | Null Yes

PickBanUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
teamId String | NullableStringFieldUpdateOperationsInput | Null Yes
championId Int | NullableIntFieldUpdateOperationsInput | Null Yes
pickTurn Int | NullableIntFieldUpdateOperationsInput | Null Yes

PickBanCreateManyInput

Name Type Nullable
id String No
teamId String | Null Yes
championId Int | Null Yes
pickTurn Int | Null Yes

PickBanUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
championId Int | NullableIntFieldUpdateOperationsInput | Null Yes
pickTurn Int | NullableIntFieldUpdateOperationsInput | Null Yes

PickBanUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
teamId String | NullableStringFieldUpdateOperationsInput | Null Yes
championId Int | NullableIntFieldUpdateOperationsInput | Null Yes
pickTurn Int | NullableIntFieldUpdateOperationsInput | Null Yes

PlayerCreateInput

Name Type Nullable
id String No
puuid String No
accountId String No
platformId String No
summonerId String No
summonerName String No
summonerLevel Int | Null Yes
profileIconId Int | Null Yes
revisionDate String No
kills PlayerKillCreateNestedManyWithoutKillerInput No
deaths PlayerKillCreateNestedManyWithoutVictimInput No
teams TeamCreateNestedManyWithoutPlayersInput No
profile ProfileCreateNestedOneWithoutPlayerInput No
monsterKills TeamMonsterKillCreateNestedManyWithoutKillerInput No
buildingKills TeamBuildingKillCreateNestedManyWithoutKillerInput No
itemEvent PlayerItemEventCreateNestedManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatCreateNestedManyWithoutPlayerInput No
snapshots PlayerSnapshotCreateNestedManyWithoutPlayerInput No
wardEvents PlayerWardEventCreateNestedManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventCreateNestedManyWithoutPlayerInput No

PlayerUncheckedCreateInput

Name Type Nullable
id String No
puuid String No
accountId String No
platformId String No
summonerId String No
summonerName String No
summonerLevel Int | Null Yes
profileIconId Int | Null Yes
revisionDate String No
kills PlayerKillUncheckedCreateNestedManyWithoutKillerInput No
deaths PlayerKillUncheckedCreateNestedManyWithoutVictimInput No
teams TeamUncheckedCreateNestedManyWithoutPlayersInput No
profileId String | Null Yes
monsterKills TeamMonsterKillUncheckedCreateNestedManyWithoutKillerInput No
buildingKills TeamBuildingKillUncheckedCreateNestedManyWithoutKillerInput No
itemEvent PlayerItemEventUncheckedCreateNestedManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatUncheckedCreateNestedManyWithoutPlayerInput No
snapshots PlayerSnapshotUncheckedCreateNestedManyWithoutPlayerInput No
wardEvents PlayerWardEventUncheckedCreateNestedManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventUncheckedCreateNestedManyWithoutPlayerInput No

PlayerUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
puuid String | StringFieldUpdateOperationsInput No
accountId String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
summonerId String | StringFieldUpdateOperationsInput No
summonerName String | StringFieldUpdateOperationsInput No
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
profileIconId Int | NullableIntFieldUpdateOperationsInput | Null Yes
revisionDate String | StringFieldUpdateOperationsInput No
kills PlayerKillUpdateManyWithoutKillerInput No
deaths PlayerKillUpdateManyWithoutVictimInput No
teams TeamUpdateManyWithoutPlayersInput No
profile ProfileUpdateOneWithoutPlayerInput No
monsterKills TeamMonsterKillUpdateManyWithoutKillerInput No
buildingKills TeamBuildingKillUpdateManyWithoutKillerInput No
itemEvent PlayerItemEventUpdateManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatUpdateManyWithoutPlayerInput No
snapshots PlayerSnapshotUpdateManyWithoutPlayerInput No
wardEvents PlayerWardEventUpdateManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventUpdateManyWithoutPlayerInput No

PlayerUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
puuid String | StringFieldUpdateOperationsInput No
accountId String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
summonerId String | StringFieldUpdateOperationsInput No
summonerName String | StringFieldUpdateOperationsInput No
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
profileIconId Int | NullableIntFieldUpdateOperationsInput | Null Yes
revisionDate String | StringFieldUpdateOperationsInput No
kills PlayerKillUncheckedUpdateManyWithoutKillerInput No
deaths PlayerKillUncheckedUpdateManyWithoutVictimInput No
teams TeamUncheckedUpdateManyWithoutPlayersInput No
profileId String | NullableStringFieldUpdateOperationsInput | Null Yes
monsterKills TeamMonsterKillUncheckedUpdateManyWithoutKillerInput No
buildingKills TeamBuildingKillUncheckedUpdateManyWithoutKillerInput No
itemEvent PlayerItemEventUncheckedUpdateManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatUncheckedUpdateManyWithoutPlayerInput No
snapshots PlayerSnapshotUncheckedUpdateManyWithoutPlayerInput No
wardEvents PlayerWardEventUncheckedUpdateManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventUncheckedUpdateManyWithoutPlayerInput No

PlayerCreateManyInput

Name Type Nullable
id String No
puuid String No
accountId String No
platformId String No
summonerId String No
summonerName String No
summonerLevel Int | Null Yes
profileIconId Int | Null Yes
revisionDate String No
profileId String | Null Yes

PlayerUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
puuid String | StringFieldUpdateOperationsInput No
accountId String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
summonerId String | StringFieldUpdateOperationsInput No
summonerName String | StringFieldUpdateOperationsInput No
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
profileIconId Int | NullableIntFieldUpdateOperationsInput | Null Yes
revisionDate String | StringFieldUpdateOperationsInput No

PlayerUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
puuid String | StringFieldUpdateOperationsInput No
accountId String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
summonerId String | StringFieldUpdateOperationsInput No
summonerName String | StringFieldUpdateOperationsInput No
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
profileIconId Int | NullableIntFieldUpdateOperationsInput | Null Yes
revisionDate String | StringFieldUpdateOperationsInput No
profileId String | NullableStringFieldUpdateOperationsInput | Null Yes

PlayerEndOfGameStatCreateInput

Name Type Nullable
id String No
player PlayerCreateNestedOneWithoutEndOfGameStatsInput No
game GameCreateNestedOneWithoutFrom_PlayerEndOfGameStat_gameInput No
perks PlayerRuneCreateNestedOneWithoutPlayerEndOfGameStatInput No
items PlayerItemCreateNestedOneWithoutPlayerEndOfGameStatInput No
assists Int | Null Yes
baronKills Int | Null Yes
bountyLevel Int | Null Yes
championExperience Int | Null Yes
championLevel Int | Null Yes
championId Int | Null Yes
championName String No
championTransform Int | Null Yes
consumablesPurchased Int | Null Yes
damageDealtToBuildings Int | Null Yes
damageDealtToObjectives Int | Null Yes
damageDealtToTurrets Int | Null Yes
damageSelfMitigated Int | Null Yes
deaths Int | Null Yes
detectorWardsPlaced Int | Null Yes
doubleKills Int | Null Yes
dragonKills Int | Null Yes
firstBlood Boolean No
firstBloodAssist Boolean No
firstTowerKill Boolean No
firstTowerAssist Boolean No
gameEndedInEarlySurrender Boolean No
gameEndedInSurrender Boolean No
goldEarned Int | Null Yes
goldSpent Int | Null Yes
individualPosition String No
inhibitorKills Int | Null Yes
inhibitorTakedowns Int | Null Yes
inhibitorsLost Int | Null Yes
item0 Int | Null Yes
item1 Int | Null Yes
item2 Int | Null Yes
item3 Int | Null Yes
item4 Int | Null Yes
item5 Int | Null Yes
item6 Int | Null Yes
itemsPurchased Int | Null Yes
killingSprees Int | Null Yes
kills Int | Null Yes
lane String No
largestCriticalStrike Int | Null Yes
largestKillingSpree Int | Null Yes
largestMultiKill Int | Null Yes
longestTimeSpentLiving Int | Null Yes
magicDamageDealt Int | Null Yes
magicDamageDealtToChampions Int | Null Yes
magicDamageTaken Int | Null Yes
neutralMinionsKilled Int | Null Yes
nexusKills Int | Null Yes
nexusLost Int | Null Yes
nexusTakedowns Int | Null Yes
objectivesStolen Int | Null Yes
objectivesStolenAssists Int | Null Yes
participantId Int | Null Yes
pentaKills Int | Null Yes
physicalDamageDealt Int | Null Yes
physicalDamageDealtToChampions Int | Null Yes
physicalDamageTaken Int | Null Yes
quadraKills Int | Null Yes
riotIdName String No
riotIdTagline String No
role String No
sightWardsBoughtInGame Int | Null Yes
spell1Casts Int | Null Yes
spell2Casts Int | Null Yes
spell3Casts Int | Null Yes
spell4Casts Int | Null Yes
summoner1Casts Int | Null Yes
summoner1Id Int | Null Yes
summoner2Casts Int | Null Yes
summoner2Id Int | Null Yes
summonerLevel Int | Null Yes
summonerName String No
teamEarlySurrendered Boolean No
teamId Int | Null Yes
teamPosition String No
timeCCingOthers Int | Null Yes
timePlayed Int | Null Yes
totalDamageDealt Int | Null Yes
totalDamageDealtToChampions Int | Null Yes
totalDamageShieldedOnTeammates Int | Null Yes
totalDamageTaken Int | Null Yes
totalHeal Int | Null Yes
totalHealsOnTeammates Int | Null Yes
totalMinionsKilled Int | Null Yes
totalTimeCCDealt Int | Null Yes
totalTimeSpentDead Int | Null Yes
totalUnitsHealed Int | Null Yes
tripleKills Int | Null Yes
trueDamageDealt Int | Null Yes
trueDamageDealtToChampions Int | Null Yes
trueDamageTaken Int | Null Yes
turretsKilled Int | Null Yes
turretTakedowns Int | Null Yes
turretsLost Int | Null Yes
unrealKills Int | Null Yes
visionScore Int | Null Yes
visionWardsBoughtInGame Int | Null Yes
wardsKilled Int | Null Yes
wardsPlaced Int | Null Yes
win Boolean No

PlayerEndOfGameStatUncheckedCreateInput

Name Type Nullable
id String No
playerId String | Null Yes
gameId String | Null Yes
perksId String | Null Yes
itemsId String | Null Yes
assists Int | Null Yes
baronKills Int | Null Yes
bountyLevel Int | Null Yes
championExperience Int | Null Yes
championLevel Int | Null Yes
championId Int | Null Yes
championName String No
championTransform Int | Null Yes
consumablesPurchased Int | Null Yes
damageDealtToBuildings Int | Null Yes
damageDealtToObjectives Int | Null Yes
damageDealtToTurrets Int | Null Yes
damageSelfMitigated Int | Null Yes
deaths Int | Null Yes
detectorWardsPlaced Int | Null Yes
doubleKills Int | Null Yes
dragonKills Int | Null Yes
firstBlood Boolean No
firstBloodAssist Boolean No
firstTowerKill Boolean No
firstTowerAssist Boolean No
gameEndedInEarlySurrender Boolean No
gameEndedInSurrender Boolean No
goldEarned Int | Null Yes
goldSpent Int | Null Yes
individualPosition String No
inhibitorKills Int | Null Yes
inhibitorTakedowns Int | Null Yes
inhibitorsLost Int | Null Yes
item0 Int | Null Yes
item1 Int | Null Yes
item2 Int | Null Yes
item3 Int | Null Yes
item4 Int | Null Yes
item5 Int | Null Yes
item6 Int | Null Yes
itemsPurchased Int | Null Yes
killingSprees Int | Null Yes
kills Int | Null Yes
lane String No
largestCriticalStrike Int | Null Yes
largestKillingSpree Int | Null Yes
largestMultiKill Int | Null Yes
longestTimeSpentLiving Int | Null Yes
magicDamageDealt Int | Null Yes
magicDamageDealtToChampions Int | Null Yes
magicDamageTaken Int | Null Yes
neutralMinionsKilled Int | Null Yes
nexusKills Int | Null Yes
nexusLost Int | Null Yes
nexusTakedowns Int | Null Yes
objectivesStolen Int | Null Yes
objectivesStolenAssists Int | Null Yes
participantId Int | Null Yes
pentaKills Int | Null Yes
physicalDamageDealt Int | Null Yes
physicalDamageDealtToChampions Int | Null Yes
physicalDamageTaken Int | Null Yes
quadraKills Int | Null Yes
riotIdName String No
riotIdTagline String No
role String No
sightWardsBoughtInGame Int | Null Yes
spell1Casts Int | Null Yes
spell2Casts Int | Null Yes
spell3Casts Int | Null Yes
spell4Casts Int | Null Yes
summoner1Casts Int | Null Yes
summoner1Id Int | Null Yes
summoner2Casts Int | Null Yes
summoner2Id Int | Null Yes
summonerLevel Int | Null Yes
summonerName String No
teamEarlySurrendered Boolean No
teamId Int | Null Yes
teamPosition String No
timeCCingOthers Int | Null Yes
timePlayed Int | Null Yes
totalDamageDealt Int | Null Yes
totalDamageDealtToChampions Int | Null Yes
totalDamageShieldedOnTeammates Int | Null Yes
totalDamageTaken Int | Null Yes
totalHeal Int | Null Yes
totalHealsOnTeammates Int | Null Yes
totalMinionsKilled Int | Null Yes
totalTimeCCDealt Int | Null Yes
totalTimeSpentDead Int | Null Yes
totalUnitsHealed Int | Null Yes
tripleKills Int | Null Yes
trueDamageDealt Int | Null Yes
trueDamageDealtToChampions Int | Null Yes
trueDamageTaken Int | Null Yes
turretsKilled Int | Null Yes
turretTakedowns Int | Null Yes
turretsLost Int | Null Yes
unrealKills Int | Null Yes
visionScore Int | Null Yes
visionWardsBoughtInGame Int | Null Yes
wardsKilled Int | Null Yes
wardsPlaced Int | Null Yes
win Boolean No

PlayerEndOfGameStatUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
player PlayerUpdateOneWithoutEndOfGameStatsInput No
game GameUpdateOneWithoutFrom_PlayerEndOfGameStat_gameInput No
perks PlayerRuneUpdateOneWithoutPlayerEndOfGameStatInput No
items PlayerItemUpdateOneWithoutPlayerEndOfGameStatInput No
assists Int | NullableIntFieldUpdateOperationsInput | Null Yes
baronKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
bountyLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
championExperience Int | NullableIntFieldUpdateOperationsInput | Null Yes
championLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
championId Int | NullableIntFieldUpdateOperationsInput | Null Yes
championName String | StringFieldUpdateOperationsInput No
championTransform Int | NullableIntFieldUpdateOperationsInput | Null Yes
consumablesPurchased Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToBuildings Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToObjectives Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToTurrets Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageSelfMitigated Int | NullableIntFieldUpdateOperationsInput | Null Yes
deaths Int | NullableIntFieldUpdateOperationsInput | Null Yes
detectorWardsPlaced Int | NullableIntFieldUpdateOperationsInput | Null Yes
doubleKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
dragonKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
firstBlood Boolean | BoolFieldUpdateOperationsInput No
firstBloodAssist Boolean | BoolFieldUpdateOperationsInput No
firstTowerKill Boolean | BoolFieldUpdateOperationsInput No
firstTowerAssist Boolean | BoolFieldUpdateOperationsInput No
gameEndedInEarlySurrender Boolean | BoolFieldUpdateOperationsInput No
gameEndedInSurrender Boolean | BoolFieldUpdateOperationsInput No
goldEarned Int | NullableIntFieldUpdateOperationsInput | Null Yes
goldSpent Int | NullableIntFieldUpdateOperationsInput | Null Yes
individualPosition String | StringFieldUpdateOperationsInput No
inhibitorKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
inhibitorTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
inhibitorsLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
item0 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item1 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item2 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item3 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item4 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item5 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item6 Int | NullableIntFieldUpdateOperationsInput | Null Yes
itemsPurchased Int | NullableIntFieldUpdateOperationsInput | Null Yes
killingSprees Int | NullableIntFieldUpdateOperationsInput | Null Yes
kills Int | NullableIntFieldUpdateOperationsInput | Null Yes
lane String | StringFieldUpdateOperationsInput No
largestCriticalStrike Int | NullableIntFieldUpdateOperationsInput | Null Yes
largestKillingSpree Int | NullableIntFieldUpdateOperationsInput | Null Yes
largestMultiKill Int | NullableIntFieldUpdateOperationsInput | Null Yes
longestTimeSpentLiving Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
neutralMinionsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
objectivesStolen Int | NullableIntFieldUpdateOperationsInput | Null Yes
objectivesStolenAssists Int | NullableIntFieldUpdateOperationsInput | Null Yes
participantId Int | NullableIntFieldUpdateOperationsInput | Null Yes
pentaKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
quadraKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
riotIdName String | StringFieldUpdateOperationsInput No
riotIdTagline String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
sightWardsBoughtInGame Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell1Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell2Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell3Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell4Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner1Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner1Id Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner2Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner2Id Int | NullableIntFieldUpdateOperationsInput | Null Yes
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
summonerName String | StringFieldUpdateOperationsInput No
teamEarlySurrendered Boolean | BoolFieldUpdateOperationsInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
teamPosition String | StringFieldUpdateOperationsInput No
timeCCingOthers Int | NullableIntFieldUpdateOperationsInput | Null Yes
timePlayed Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageShieldedOnTeammates Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalHeal Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalHealsOnTeammates Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalMinionsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalTimeCCDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalTimeSpentDead Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalUnitsHealed Int | NullableIntFieldUpdateOperationsInput | Null Yes
tripleKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretsLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
unrealKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
visionScore Int | NullableIntFieldUpdateOperationsInput | Null Yes
visionWardsBoughtInGame Int | NullableIntFieldUpdateOperationsInput | Null Yes
wardsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
wardsPlaced Int | NullableIntFieldUpdateOperationsInput | Null Yes
win Boolean | BoolFieldUpdateOperationsInput No

PlayerEndOfGameStatUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
playerId String | NullableStringFieldUpdateOperationsInput | Null Yes
gameId String | NullableStringFieldUpdateOperationsInput | Null Yes
perksId String | NullableStringFieldUpdateOperationsInput | Null Yes
itemsId String | NullableStringFieldUpdateOperationsInput | Null Yes
assists Int | NullableIntFieldUpdateOperationsInput | Null Yes
baronKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
bountyLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
championExperience Int | NullableIntFieldUpdateOperationsInput | Null Yes
championLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
championId Int | NullableIntFieldUpdateOperationsInput | Null Yes
championName String | StringFieldUpdateOperationsInput No
championTransform Int | NullableIntFieldUpdateOperationsInput | Null Yes
consumablesPurchased Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToBuildings Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToObjectives Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToTurrets Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageSelfMitigated Int | NullableIntFieldUpdateOperationsInput | Null Yes
deaths Int | NullableIntFieldUpdateOperationsInput | Null Yes
detectorWardsPlaced Int | NullableIntFieldUpdateOperationsInput | Null Yes
doubleKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
dragonKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
firstBlood Boolean | BoolFieldUpdateOperationsInput No
firstBloodAssist Boolean | BoolFieldUpdateOperationsInput No
firstTowerKill Boolean | BoolFieldUpdateOperationsInput No
firstTowerAssist Boolean | BoolFieldUpdateOperationsInput No
gameEndedInEarlySurrender Boolean | BoolFieldUpdateOperationsInput No
gameEndedInSurrender Boolean | BoolFieldUpdateOperationsInput No
goldEarned Int | NullableIntFieldUpdateOperationsInput | Null Yes
goldSpent Int | NullableIntFieldUpdateOperationsInput | Null Yes
individualPosition String | StringFieldUpdateOperationsInput No
inhibitorKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
inhibitorTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
inhibitorsLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
item0 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item1 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item2 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item3 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item4 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item5 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item6 Int | NullableIntFieldUpdateOperationsInput | Null Yes
itemsPurchased Int | NullableIntFieldUpdateOperationsInput | Null Yes
killingSprees Int | NullableIntFieldUpdateOperationsInput | Null Yes
kills Int | NullableIntFieldUpdateOperationsInput | Null Yes
lane String | StringFieldUpdateOperationsInput No
largestCriticalStrike Int | NullableIntFieldUpdateOperationsInput | Null Yes
largestKillingSpree Int | NullableIntFieldUpdateOperationsInput | Null Yes
largestMultiKill Int | NullableIntFieldUpdateOperationsInput | Null Yes
longestTimeSpentLiving Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
neutralMinionsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
objectivesStolen Int | NullableIntFieldUpdateOperationsInput | Null Yes
objectivesStolenAssists Int | NullableIntFieldUpdateOperationsInput | Null Yes
participantId Int | NullableIntFieldUpdateOperationsInput | Null Yes
pentaKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
quadraKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
riotIdName String | StringFieldUpdateOperationsInput No
riotIdTagline String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
sightWardsBoughtInGame Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell1Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell2Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell3Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell4Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner1Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner1Id Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner2Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner2Id Int | NullableIntFieldUpdateOperationsInput | Null Yes
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
summonerName String | StringFieldUpdateOperationsInput No
teamEarlySurrendered Boolean | BoolFieldUpdateOperationsInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
teamPosition String | StringFieldUpdateOperationsInput No
timeCCingOthers Int | NullableIntFieldUpdateOperationsInput | Null Yes
timePlayed Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageShieldedOnTeammates Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalHeal Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalHealsOnTeammates Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalMinionsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalTimeCCDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalTimeSpentDead Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalUnitsHealed Int | NullableIntFieldUpdateOperationsInput | Null Yes
tripleKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretsLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
unrealKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
visionScore Int | NullableIntFieldUpdateOperationsInput | Null Yes
visionWardsBoughtInGame Int | NullableIntFieldUpdateOperationsInput | Null Yes
wardsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
wardsPlaced Int | NullableIntFieldUpdateOperationsInput | Null Yes
win Boolean | BoolFieldUpdateOperationsInput No

PlayerEndOfGameStatCreateManyInput

Name Type Nullable
id String No
playerId String | Null Yes
gameId String | Null Yes
perksId String | Null Yes
itemsId String | Null Yes
assists Int | Null Yes
baronKills Int | Null Yes
bountyLevel Int | Null Yes
championExperience Int | Null Yes
championLevel Int | Null Yes
championId Int | Null Yes
championName String No
championTransform Int | Null Yes
consumablesPurchased Int | Null Yes
damageDealtToBuildings Int | Null Yes
damageDealtToObjectives Int | Null Yes
damageDealtToTurrets Int | Null Yes
damageSelfMitigated Int | Null Yes
deaths Int | Null Yes
detectorWardsPlaced Int | Null Yes
doubleKills Int | Null Yes
dragonKills Int | Null Yes
firstBlood Boolean No
firstBloodAssist Boolean No
firstTowerKill Boolean No
firstTowerAssist Boolean No
gameEndedInEarlySurrender Boolean No
gameEndedInSurrender Boolean No
goldEarned Int | Null Yes
goldSpent Int | Null Yes
individualPosition String No
inhibitorKills Int | Null Yes
inhibitorTakedowns Int | Null Yes
inhibitorsLost Int | Null Yes
item0 Int | Null Yes
item1 Int | Null Yes
item2 Int | Null Yes
item3 Int | Null Yes
item4 Int | Null Yes
item5 Int | Null Yes
item6 Int | Null Yes
itemsPurchased Int | Null Yes
killingSprees Int | Null Yes
kills Int | Null Yes
lane String No
largestCriticalStrike Int | Null Yes
largestKillingSpree Int | Null Yes
largestMultiKill Int | Null Yes
longestTimeSpentLiving Int | Null Yes
magicDamageDealt Int | Null Yes
magicDamageDealtToChampions Int | Null Yes
magicDamageTaken Int | Null Yes
neutralMinionsKilled Int | Null Yes
nexusKills Int | Null Yes
nexusLost Int | Null Yes
nexusTakedowns Int | Null Yes
objectivesStolen Int | Null Yes
objectivesStolenAssists Int | Null Yes
participantId Int | Null Yes
pentaKills Int | Null Yes
physicalDamageDealt Int | Null Yes
physicalDamageDealtToChampions Int | Null Yes
physicalDamageTaken Int | Null Yes
quadraKills Int | Null Yes
riotIdName String No
riotIdTagline String No
role String No
sightWardsBoughtInGame Int | Null Yes
spell1Casts Int | Null Yes
spell2Casts Int | Null Yes
spell3Casts Int | Null Yes
spell4Casts Int | Null Yes
summoner1Casts Int | Null Yes
summoner1Id Int | Null Yes
summoner2Casts Int | Null Yes
summoner2Id Int | Null Yes
summonerLevel Int | Null Yes
summonerName String No
teamEarlySurrendered Boolean No
teamId Int | Null Yes
teamPosition String No
timeCCingOthers Int | Null Yes
timePlayed Int | Null Yes
totalDamageDealt Int | Null Yes
totalDamageDealtToChampions Int | Null Yes
totalDamageShieldedOnTeammates Int | Null Yes
totalDamageTaken Int | Null Yes
totalHeal Int | Null Yes
totalHealsOnTeammates Int | Null Yes
totalMinionsKilled Int | Null Yes
totalTimeCCDealt Int | Null Yes
totalTimeSpentDead Int | Null Yes
totalUnitsHealed Int | Null Yes
tripleKills Int | Null Yes
trueDamageDealt Int | Null Yes
trueDamageDealtToChampions Int | Null Yes
trueDamageTaken Int | Null Yes
turretsKilled Int | Null Yes
turretTakedowns Int | Null Yes
turretsLost Int | Null Yes
unrealKills Int | Null Yes
visionScore Int | Null Yes
visionWardsBoughtInGame Int | Null Yes
wardsKilled Int | Null Yes
wardsPlaced Int | Null Yes
win Boolean No

PlayerEndOfGameStatUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
assists Int | NullableIntFieldUpdateOperationsInput | Null Yes
baronKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
bountyLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
championExperience Int | NullableIntFieldUpdateOperationsInput | Null Yes
championLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
championId Int | NullableIntFieldUpdateOperationsInput | Null Yes
championName String | StringFieldUpdateOperationsInput No
championTransform Int | NullableIntFieldUpdateOperationsInput | Null Yes
consumablesPurchased Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToBuildings Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToObjectives Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToTurrets Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageSelfMitigated Int | NullableIntFieldUpdateOperationsInput | Null Yes
deaths Int | NullableIntFieldUpdateOperationsInput | Null Yes
detectorWardsPlaced Int | NullableIntFieldUpdateOperationsInput | Null Yes
doubleKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
dragonKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
firstBlood Boolean | BoolFieldUpdateOperationsInput No
firstBloodAssist Boolean | BoolFieldUpdateOperationsInput No
firstTowerKill Boolean | BoolFieldUpdateOperationsInput No
firstTowerAssist Boolean | BoolFieldUpdateOperationsInput No
gameEndedInEarlySurrender Boolean | BoolFieldUpdateOperationsInput No
gameEndedInSurrender Boolean | BoolFieldUpdateOperationsInput No
goldEarned Int | NullableIntFieldUpdateOperationsInput | Null Yes
goldSpent Int | NullableIntFieldUpdateOperationsInput | Null Yes
individualPosition String | StringFieldUpdateOperationsInput No
inhibitorKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
inhibitorTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
inhibitorsLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
item0 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item1 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item2 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item3 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item4 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item5 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item6 Int | NullableIntFieldUpdateOperationsInput | Null Yes
itemsPurchased Int | NullableIntFieldUpdateOperationsInput | Null Yes
killingSprees Int | NullableIntFieldUpdateOperationsInput | Null Yes
kills Int | NullableIntFieldUpdateOperationsInput | Null Yes
lane String | StringFieldUpdateOperationsInput No
largestCriticalStrike Int | NullableIntFieldUpdateOperationsInput | Null Yes
largestKillingSpree Int | NullableIntFieldUpdateOperationsInput | Null Yes
largestMultiKill Int | NullableIntFieldUpdateOperationsInput | Null Yes
longestTimeSpentLiving Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
neutralMinionsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
objectivesStolen Int | NullableIntFieldUpdateOperationsInput | Null Yes
objectivesStolenAssists Int | NullableIntFieldUpdateOperationsInput | Null Yes
participantId Int | NullableIntFieldUpdateOperationsInput | Null Yes
pentaKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
quadraKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
riotIdName String | StringFieldUpdateOperationsInput No
riotIdTagline String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
sightWardsBoughtInGame Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell1Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell2Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell3Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell4Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner1Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner1Id Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner2Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner2Id Int | NullableIntFieldUpdateOperationsInput | Null Yes
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
summonerName String | StringFieldUpdateOperationsInput No
teamEarlySurrendered Boolean | BoolFieldUpdateOperationsInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
teamPosition String | StringFieldUpdateOperationsInput No
timeCCingOthers Int | NullableIntFieldUpdateOperationsInput | Null Yes
timePlayed Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageShieldedOnTeammates Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalHeal Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalHealsOnTeammates Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalMinionsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalTimeCCDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalTimeSpentDead Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalUnitsHealed Int | NullableIntFieldUpdateOperationsInput | Null Yes
tripleKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretsLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
unrealKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
visionScore Int | NullableIntFieldUpdateOperationsInput | Null Yes
visionWardsBoughtInGame Int | NullableIntFieldUpdateOperationsInput | Null Yes
wardsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
wardsPlaced Int | NullableIntFieldUpdateOperationsInput | Null Yes
win Boolean | BoolFieldUpdateOperationsInput No

PlayerEndOfGameStatUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
playerId String | NullableStringFieldUpdateOperationsInput | Null Yes
gameId String | NullableStringFieldUpdateOperationsInput | Null Yes
perksId String | NullableStringFieldUpdateOperationsInput | Null Yes
itemsId String | NullableStringFieldUpdateOperationsInput | Null Yes
assists Int | NullableIntFieldUpdateOperationsInput | Null Yes
baronKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
bountyLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
championExperience Int | NullableIntFieldUpdateOperationsInput | Null Yes
championLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
championId Int | NullableIntFieldUpdateOperationsInput | Null Yes
championName String | StringFieldUpdateOperationsInput No
championTransform Int | NullableIntFieldUpdateOperationsInput | Null Yes
consumablesPurchased Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToBuildings Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToObjectives Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToTurrets Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageSelfMitigated Int | NullableIntFieldUpdateOperationsInput | Null Yes
deaths Int | NullableIntFieldUpdateOperationsInput | Null Yes
detectorWardsPlaced Int | NullableIntFieldUpdateOperationsInput | Null Yes
doubleKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
dragonKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
firstBlood Boolean | BoolFieldUpdateOperationsInput No
firstBloodAssist Boolean | BoolFieldUpdateOperationsInput No
firstTowerKill Boolean | BoolFieldUpdateOperationsInput No
firstTowerAssist Boolean | BoolFieldUpdateOperationsInput No
gameEndedInEarlySurrender Boolean | BoolFieldUpdateOperationsInput No
gameEndedInSurrender Boolean | BoolFieldUpdateOperationsInput No
goldEarned Int | NullableIntFieldUpdateOperationsInput | Null Yes
goldSpent Int | NullableIntFieldUpdateOperationsInput | Null Yes
individualPosition String | StringFieldUpdateOperationsInput No
inhibitorKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
inhibitorTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
inhibitorsLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
item0 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item1 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item2 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item3 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item4 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item5 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item6 Int | NullableIntFieldUpdateOperationsInput | Null Yes
itemsPurchased Int | NullableIntFieldUpdateOperationsInput | Null Yes
killingSprees Int | NullableIntFieldUpdateOperationsInput | Null Yes
kills Int | NullableIntFieldUpdateOperationsInput | Null Yes
lane String | StringFieldUpdateOperationsInput No
largestCriticalStrike Int | NullableIntFieldUpdateOperationsInput | Null Yes
largestKillingSpree Int | NullableIntFieldUpdateOperationsInput | Null Yes
largestMultiKill Int | NullableIntFieldUpdateOperationsInput | Null Yes
longestTimeSpentLiving Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
neutralMinionsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
objectivesStolen Int | NullableIntFieldUpdateOperationsInput | Null Yes
objectivesStolenAssists Int | NullableIntFieldUpdateOperationsInput | Null Yes
participantId Int | NullableIntFieldUpdateOperationsInput | Null Yes
pentaKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
quadraKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
riotIdName String | StringFieldUpdateOperationsInput No
riotIdTagline String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
sightWardsBoughtInGame Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell1Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell2Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell3Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell4Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner1Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner1Id Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner2Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner2Id Int | NullableIntFieldUpdateOperationsInput | Null Yes
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
summonerName String | StringFieldUpdateOperationsInput No
teamEarlySurrendered Boolean | BoolFieldUpdateOperationsInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
teamPosition String | StringFieldUpdateOperationsInput No
timeCCingOthers Int | NullableIntFieldUpdateOperationsInput | Null Yes
timePlayed Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageShieldedOnTeammates Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalHeal Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalHealsOnTeammates Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalMinionsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalTimeCCDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalTimeSpentDead Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalUnitsHealed Int | NullableIntFieldUpdateOperationsInput | Null Yes
tripleKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretsLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
unrealKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
visionScore Int | NullableIntFieldUpdateOperationsInput | Null Yes
visionWardsBoughtInGame Int | NullableIntFieldUpdateOperationsInput | Null Yes
wardsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
wardsPlaced Int | NullableIntFieldUpdateOperationsInput | Null Yes
win Boolean | BoolFieldUpdateOperationsInput No

PlayerItemCreateInput

Name Type Nullable
id String No
slot Int | Null Yes
itemId Int | Null Yes
name String No
playerEndOfGameStat PlayerEndOfGameStatCreateNestedManyWithoutItemsInput No

PlayerItemUncheckedCreateInput

Name Type Nullable
id String No
slot Int | Null Yes
itemId Int | Null Yes
name String No
playerEndOfGameStat PlayerEndOfGameStatUncheckedCreateNestedManyWithoutItemsInput No

PlayerItemUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
slot Int | NullableIntFieldUpdateOperationsInput | Null Yes
itemId Int | NullableIntFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
playerEndOfGameStat PlayerEndOfGameStatUpdateManyWithoutItemsInput No

PlayerItemUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
slot Int | NullableIntFieldUpdateOperationsInput | Null Yes
itemId Int | NullableIntFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
playerEndOfGameStat PlayerEndOfGameStatUncheckedUpdateManyWithoutItemsInput No

PlayerItemCreateManyInput

Name Type Nullable
id String No
slot Int | Null Yes
itemId Int | Null Yes
name String No

PlayerItemUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
slot Int | NullableIntFieldUpdateOperationsInput | Null Yes
itemId Int | NullableIntFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No

PlayerItemUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
slot Int | NullableIntFieldUpdateOperationsInput | Null Yes
itemId Int | NullableIntFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No

PlayerItemEventCreateInput

Name Type Nullable
id String No
player PlayerCreateNestedManyWithoutItemEventInput No
type String No
itemId Int | Null Yes
name String No
undoId Int | Null Yes

PlayerItemEventUncheckedCreateInput

Name Type Nullable
id String No
player PlayerUncheckedCreateNestedManyWithoutItemEventInput No
type String No
itemId Int | Null Yes
name String No
undoId Int | Null Yes

PlayerItemEventUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
player PlayerUpdateManyWithoutItemEventInput No
type String | StringFieldUpdateOperationsInput No
itemId Int | NullableIntFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
undoId Int | NullableIntFieldUpdateOperationsInput | Null Yes

PlayerItemEventUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
player PlayerUncheckedUpdateManyWithoutItemEventInput No
type String | StringFieldUpdateOperationsInput No
itemId Int | NullableIntFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
undoId Int | NullableIntFieldUpdateOperationsInput | Null Yes

PlayerItemEventCreateManyInput

Name Type Nullable
id String No
type String No
itemId Int | Null Yes
name String No
undoId Int | Null Yes

PlayerItemEventUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
itemId Int | NullableIntFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
undoId Int | NullableIntFieldUpdateOperationsInput | Null Yes

PlayerItemEventUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
itemId Int | NullableIntFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
undoId Int | NullableIntFieldUpdateOperationsInput | Null Yes

PlayerKillCreateInput

Name Type Nullable
id String No
killer PlayerCreateNestedManyWithoutKillsInput No
victim PlayerCreateNestedManyWithoutDeathsInput No

PlayerKillUncheckedCreateInput

Name Type Nullable
id String No
killer PlayerUncheckedCreateNestedManyWithoutKillsInput No
victim PlayerUncheckedCreateNestedManyWithoutDeathsInput No

PlayerKillUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
killer PlayerUpdateManyWithoutKillsInput No
victim PlayerUpdateManyWithoutDeathsInput No

PlayerKillUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
killer PlayerUncheckedUpdateManyWithoutKillsInput No
victim PlayerUncheckedUpdateManyWithoutDeathsInput No

PlayerKillCreateManyInput

Name Type Nullable
id String No

PlayerKillUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No

PlayerKillUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No

PlayerRuneCreateInput

Name Type Nullable
id String No
playerEndOfGameStat PlayerEndOfGameStatCreateNestedOneWithoutPerksInput No
runeStyle RuneStyleCreateNestedManyWithoutPlayerRunesInput No
defense Int | Null Yes
flex Int | Null Yes
offense Int | Null Yes

PlayerRuneUncheckedCreateInput

Name Type Nullable
id String No
playerEndOfGameStat PlayerEndOfGameStatUncheckedCreateNestedOneWithoutPerksInput No
runeStyle RuneStyleUncheckedCreateNestedManyWithoutPlayerRunesInput No
defense Int | Null Yes
flex Int | Null Yes
offense Int | Null Yes

PlayerRuneUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
playerEndOfGameStat PlayerEndOfGameStatUpdateOneWithoutPerksInput No
runeStyle RuneStyleUpdateManyWithoutPlayerRunesInput No
defense Int | NullableIntFieldUpdateOperationsInput | Null Yes
flex Int | NullableIntFieldUpdateOperationsInput | Null Yes
offense Int | NullableIntFieldUpdateOperationsInput | Null Yes

PlayerRuneUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
playerEndOfGameStat PlayerEndOfGameStatUncheckedUpdateOneWithoutPerksInput No
runeStyle RuneStyleUncheckedUpdateManyWithoutPlayerRunesInput No
defense Int | NullableIntFieldUpdateOperationsInput | Null Yes
flex Int | NullableIntFieldUpdateOperationsInput | Null Yes
offense Int | NullableIntFieldUpdateOperationsInput | Null Yes

PlayerRuneCreateManyInput

Name Type Nullable
id String No
defense Int | Null Yes
flex Int | Null Yes
offense Int | Null Yes

PlayerRuneUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
defense Int | NullableIntFieldUpdateOperationsInput | Null Yes
flex Int | NullableIntFieldUpdateOperationsInput | Null Yes
offense Int | NullableIntFieldUpdateOperationsInput | Null Yes

PlayerRuneUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
defense Int | NullableIntFieldUpdateOperationsInput | Null Yes
flex Int | NullableIntFieldUpdateOperationsInput | Null Yes
offense Int | NullableIntFieldUpdateOperationsInput | Null Yes

PlayerSkillLevelUpEventCreateInput

Name Type Nullable
id String No
player PlayerCreateNestedManyWithoutSkillLevelUpEventsInput No
type String No
slot Int | Null Yes

PlayerSkillLevelUpEventUncheckedCreateInput

Name Type Nullable
id String No
player PlayerUncheckedCreateNestedManyWithoutSkillLevelUpEventsInput No
type String No
slot Int | Null Yes

PlayerSkillLevelUpEventUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
player PlayerUpdateManyWithoutSkillLevelUpEventsInput No
type String | StringFieldUpdateOperationsInput No
slot Int | NullableIntFieldUpdateOperationsInput | Null Yes

PlayerSkillLevelUpEventUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
player PlayerUncheckedUpdateManyWithoutSkillLevelUpEventsInput No
type String | StringFieldUpdateOperationsInput No
slot Int | NullableIntFieldUpdateOperationsInput | Null Yes

PlayerSkillLevelUpEventCreateManyInput

Name Type Nullable
id String No
type String No
slot Int | Null Yes

PlayerSkillLevelUpEventUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
slot Int | NullableIntFieldUpdateOperationsInput | Null Yes

PlayerSkillLevelUpEventUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
slot Int | NullableIntFieldUpdateOperationsInput | Null Yes

PlayerSnapshotCreateInput

Name Type Nullable
id String No
timestamp Float | Null Yes
currentGold Int | Null Yes
totalGold Int | Null Yes
totalGoldDiff Int | Null Yes
xp Int | Null Yes
xpDiff Int | Null Yes
level Int | Null Yes
cs Int | Null Yes
csDiff Int | Null Yes
monstersKilled Int | Null Yes
monstersKilledDiff Int | Null Yes
position PositionCreateNestedManyWithoutPlayerSnapshotInput No
player PlayerCreateNestedManyWithoutSnapshotsInput No

PlayerSnapshotUncheckedCreateInput

Name Type Nullable
id String No
timestamp Float | Null Yes
currentGold Int | Null Yes
totalGold Int | Null Yes
totalGoldDiff Int | Null Yes
xp Int | Null Yes
xpDiff Int | Null Yes
level Int | Null Yes
cs Int | Null Yes
csDiff Int | Null Yes
monstersKilled Int | Null Yes
monstersKilledDiff Int | Null Yes
position PositionUncheckedCreateNestedManyWithoutPlayerSnapshotInput No
player PlayerUncheckedCreateNestedManyWithoutSnapshotsInput No

PlayerSnapshotUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
timestamp Float | NullableFloatFieldUpdateOperationsInput | Null Yes
currentGold Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalGold Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalGoldDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes
xp Int | NullableIntFieldUpdateOperationsInput | Null Yes
xpDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes
level Int | NullableIntFieldUpdateOperationsInput | Null Yes
cs Int | NullableIntFieldUpdateOperationsInput | Null Yes
csDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes
monstersKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
monstersKilledDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes
position PositionUpdateManyWithoutPlayerSnapshotInput No
player PlayerUpdateManyWithoutSnapshotsInput No

PlayerSnapshotUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
timestamp Float | NullableFloatFieldUpdateOperationsInput | Null Yes
currentGold Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalGold Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalGoldDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes
xp Int | NullableIntFieldUpdateOperationsInput | Null Yes
xpDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes
level Int | NullableIntFieldUpdateOperationsInput | Null Yes
cs Int | NullableIntFieldUpdateOperationsInput | Null Yes
csDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes
monstersKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
monstersKilledDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes
position PositionUncheckedUpdateManyWithoutPlayerSnapshotInput No
player PlayerUncheckedUpdateManyWithoutSnapshotsInput No

PlayerSnapshotCreateManyInput

Name Type Nullable
id String No
timestamp Float | Null Yes
currentGold Int | Null Yes
totalGold Int | Null Yes
totalGoldDiff Int | Null Yes
xp Int | Null Yes
xpDiff Int | Null Yes
level Int | Null Yes
cs Int | Null Yes
csDiff Int | Null Yes
monstersKilled Int | Null Yes
monstersKilledDiff Int | Null Yes

PlayerSnapshotUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
timestamp Float | NullableFloatFieldUpdateOperationsInput | Null Yes
currentGold Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalGold Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalGoldDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes
xp Int | NullableIntFieldUpdateOperationsInput | Null Yes
xpDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes
level Int | NullableIntFieldUpdateOperationsInput | Null Yes
cs Int | NullableIntFieldUpdateOperationsInput | Null Yes
csDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes
monstersKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
monstersKilledDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes

PlayerSnapshotUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
timestamp Float | NullableFloatFieldUpdateOperationsInput | Null Yes
currentGold Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalGold Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalGoldDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes
xp Int | NullableIntFieldUpdateOperationsInput | Null Yes
xpDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes
level Int | NullableIntFieldUpdateOperationsInput | Null Yes
cs Int | NullableIntFieldUpdateOperationsInput | Null Yes
csDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes
monstersKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
monstersKilledDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes

PlayerWardEventCreateInput

Name Type Nullable
id String No
player PlayerCreateNestedManyWithoutWardEventsInput No
type String No
wardType PlayerWardEventWardTypeType | Null Yes

PlayerWardEventUncheckedCreateInput

Name Type Nullable
id String No
player PlayerUncheckedCreateNestedManyWithoutWardEventsInput No
type String No
wardType PlayerWardEventWardTypeType | Null Yes



PlayerWardEventCreateManyInput

Name Type Nullable
id String No
type String No
wardType PlayerWardEventWardTypeType | Null Yes

PlayerWardEventUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
wardType PlayerWardEventWardTypeType | NullableEnumPlayerWardEventWardTypeTypeFieldUpdateOperationsInput | Null Yes

PlayerWardEventUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
wardType PlayerWardEventWardTypeType | NullableEnumPlayerWardEventWardTypeTypeFieldUpdateOperationsInput | Null Yes

PositionCreateInput

Name Type Nullable
id String No
event EventCreateNestedManyWithoutPositionInput No
x Int | Null Yes
y Int | Null Yes
playerSnapshot PlayerSnapshotCreateNestedManyWithoutPositionInput No

PositionUncheckedCreateInput

Name Type Nullable
id String No
event EventUncheckedCreateNestedManyWithoutPositionInput No
x Int | Null Yes
y Int | Null Yes
playerSnapshot PlayerSnapshotUncheckedCreateNestedManyWithoutPositionInput No

PositionUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
event EventUpdateManyWithoutPositionInput No
x Int | NullableIntFieldUpdateOperationsInput | Null Yes
y Int | NullableIntFieldUpdateOperationsInput | Null Yes
playerSnapshot PlayerSnapshotUpdateManyWithoutPositionInput No


PositionCreateManyInput

Name Type Nullable
id String No
x Int | Null Yes
y Int | Null Yes

PositionUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
x Int | NullableIntFieldUpdateOperationsInput | Null Yes
y Int | NullableIntFieldUpdateOperationsInput | Null Yes

PositionUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
x Int | NullableIntFieldUpdateOperationsInput | Null Yes
y Int | NullableIntFieldUpdateOperationsInput | Null Yes

ProfileCreateInput

Name Type Nullable
id String No
update Boolean No
player PlayerCreateNestedOneWithoutProfileInput No
lastUpdate DateTime No
kills Int | Null Yes
deaths Int | Null Yes
assists Int | Null Yes
kda String No
winRate String No
csPerMinute String No
damagePerMinute String No
killsPerMinute String No
goldPerMinute String No
averageGameTime String No
averageTimeSpentDead String No
totalGameTime String No
activity ActivityCreateNestedManyWithoutProfileInput No
championWinrate ChampionWinrateCreateNestedManyWithoutProfileInput No
duos DuoCreateNestedManyWithoutProfileInput No

ProfileUncheckedCreateInput

Name Type Nullable
id String No
update Boolean No
player PlayerUncheckedCreateNestedOneWithoutProfileInput No
lastUpdate DateTime No
kills Int | Null Yes
deaths Int | Null Yes
assists Int | Null Yes
kda String No
winRate String No
csPerMinute String No
damagePerMinute String No
killsPerMinute String No
goldPerMinute String No
averageGameTime String No
averageTimeSpentDead String No
totalGameTime String No
activity ActivityUncheckedCreateNestedManyWithoutProfileInput No
championWinrate ChampionWinrateUncheckedCreateNestedManyWithoutProfileInput No
duos DuoUncheckedCreateNestedManyWithoutProfileInput No

ProfileUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
update Boolean | BoolFieldUpdateOperationsInput No
player PlayerUpdateOneWithoutProfileInput No
lastUpdate DateTime | DateTimeFieldUpdateOperationsInput No
kills Int | NullableIntFieldUpdateOperationsInput | Null Yes
deaths Int | NullableIntFieldUpdateOperationsInput | Null Yes
assists Int | NullableIntFieldUpdateOperationsInput | Null Yes
kda String | StringFieldUpdateOperationsInput No
winRate String | StringFieldUpdateOperationsInput No
csPerMinute String | StringFieldUpdateOperationsInput No
damagePerMinute String | StringFieldUpdateOperationsInput No
killsPerMinute String | StringFieldUpdateOperationsInput No
goldPerMinute String | StringFieldUpdateOperationsInput No
averageGameTime String | StringFieldUpdateOperationsInput No
averageTimeSpentDead String | StringFieldUpdateOperationsInput No
totalGameTime String | StringFieldUpdateOperationsInput No
activity ActivityUpdateManyWithoutProfileInput No
championWinrate ChampionWinrateUpdateManyWithoutProfileInput No
duos DuoUpdateManyWithoutProfileInput No

ProfileUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
update Boolean | BoolFieldUpdateOperationsInput No
player PlayerUncheckedUpdateOneWithoutProfileInput No
lastUpdate DateTime | DateTimeFieldUpdateOperationsInput No
kills Int | NullableIntFieldUpdateOperationsInput | Null Yes
deaths Int | NullableIntFieldUpdateOperationsInput | Null Yes
assists Int | NullableIntFieldUpdateOperationsInput | Null Yes
kda String | StringFieldUpdateOperationsInput No
winRate String | StringFieldUpdateOperationsInput No
csPerMinute String | StringFieldUpdateOperationsInput No
damagePerMinute String | StringFieldUpdateOperationsInput No
killsPerMinute String | StringFieldUpdateOperationsInput No
goldPerMinute String | StringFieldUpdateOperationsInput No
averageGameTime String | StringFieldUpdateOperationsInput No
averageTimeSpentDead String | StringFieldUpdateOperationsInput No
totalGameTime String | StringFieldUpdateOperationsInput No
activity ActivityUncheckedUpdateManyWithoutProfileInput No
championWinrate ChampionWinrateUncheckedUpdateManyWithoutProfileInput No
duos DuoUncheckedUpdateManyWithoutProfileInput No

ProfileCreateManyInput

Name Type Nullable
id String No
update Boolean No
lastUpdate DateTime No
kills Int | Null Yes
deaths Int | Null Yes
assists Int | Null Yes
kda String No
winRate String No
csPerMinute String No
damagePerMinute String No
killsPerMinute String No
goldPerMinute String No
averageGameTime String No
averageTimeSpentDead String No
totalGameTime String No

ProfileUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
update Boolean | BoolFieldUpdateOperationsInput No
lastUpdate DateTime | DateTimeFieldUpdateOperationsInput No
kills Int | NullableIntFieldUpdateOperationsInput | Null Yes
deaths Int | NullableIntFieldUpdateOperationsInput | Null Yes
assists Int | NullableIntFieldUpdateOperationsInput | Null Yes
kda String | StringFieldUpdateOperationsInput No
winRate String | StringFieldUpdateOperationsInput No
csPerMinute String | StringFieldUpdateOperationsInput No
damagePerMinute String | StringFieldUpdateOperationsInput No
killsPerMinute String | StringFieldUpdateOperationsInput No
goldPerMinute String | StringFieldUpdateOperationsInput No
averageGameTime String | StringFieldUpdateOperationsInput No
averageTimeSpentDead String | StringFieldUpdateOperationsInput No
totalGameTime String | StringFieldUpdateOperationsInput No

ProfileUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
update Boolean | BoolFieldUpdateOperationsInput No
lastUpdate DateTime | DateTimeFieldUpdateOperationsInput No
kills Int | NullableIntFieldUpdateOperationsInput | Null Yes
deaths Int | NullableIntFieldUpdateOperationsInput | Null Yes
assists Int | NullableIntFieldUpdateOperationsInput | Null Yes
kda String | StringFieldUpdateOperationsInput No
winRate String | StringFieldUpdateOperationsInput No
csPerMinute String | StringFieldUpdateOperationsInput No
damagePerMinute String | StringFieldUpdateOperationsInput No
killsPerMinute String | StringFieldUpdateOperationsInput No
goldPerMinute String | StringFieldUpdateOperationsInput No
averageGameTime String | StringFieldUpdateOperationsInput No
averageTimeSpentDead String | StringFieldUpdateOperationsInput No
totalGameTime String | StringFieldUpdateOperationsInput No

SeedIdentifierCreateInput

Name Type Nullable
id String No
identifier String No
type String No
timestamp DateTime No
priority Boolean No
retrieved Boolean No

SeedIdentifierUncheckedCreateInput

Name Type Nullable
id String No
identifier String No
type String No
timestamp DateTime No
priority Boolean No
retrieved Boolean No

SeedIdentifierUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
identifier String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No
priority Boolean | BoolFieldUpdateOperationsInput No
retrieved Boolean | BoolFieldUpdateOperationsInput No

SeedIdentifierUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
identifier String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No
priority Boolean | BoolFieldUpdateOperationsInput No
retrieved Boolean | BoolFieldUpdateOperationsInput No

SeedIdentifierCreateManyInput

Name Type Nullable
id String No
identifier String No
type String No
timestamp DateTime No
priority Boolean No
retrieved Boolean No

SeedIdentifierUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
identifier String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No
priority Boolean | BoolFieldUpdateOperationsInput No
retrieved Boolean | BoolFieldUpdateOperationsInput No

SeedIdentifierUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
identifier String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No
priority Boolean | BoolFieldUpdateOperationsInput No
retrieved Boolean | BoolFieldUpdateOperationsInput No

SourceCreateInput

Name Type Nullable
id String No
game GameCreateNestedManyWithoutSourceInput No
api String No

SourceUncheckedCreateInput

Name Type Nullable
id String No
game GameUncheckedCreateNestedManyWithoutSourceInput No
api String No

SourceUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
game GameUpdateManyWithoutSourceInput No
api String | StringFieldUpdateOperationsInput No

SourceUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
game GameUncheckedUpdateManyWithoutSourceInput No
api String | StringFieldUpdateOperationsInput No

SourceCreateManyInput

Name Type Nullable
id String No
api String No

SourceUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
api String | StringFieldUpdateOperationsInput No

SourceUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
api String | StringFieldUpdateOperationsInput No

TeamCreateInput

Name Type Nullable
id String No
pickBan PickBanCreateNestedManyWithoutTeamInput No
game GameCreateNestedOneWithoutFrom_Team_gameInput No
players PlayerCreateNestedManyWithoutTeamsInput No
objectives ObjectiveCreateNestedManyWithoutTeamInput No
teamId Int | Null Yes
teamMatchId String No
win Boolean No
from_Game_blueTeam GameCreateNestedManyWithoutBlueTeamInput No
from_Game_redTeam GameCreateNestedManyWithoutRedTeamInput No

TeamUncheckedCreateInput

Name Type Nullable
id String No
pickBan PickBanUncheckedCreateNestedManyWithoutTeamInput No
gameId String | Null Yes
players PlayerUncheckedCreateNestedManyWithoutTeamsInput No
objectives ObjectiveUncheckedCreateNestedManyWithoutTeamInput No
teamId Int | Null Yes
teamMatchId String No
win Boolean No
from_Game_blueTeam GameUncheckedCreateNestedManyWithoutBlueTeamInput No
from_Game_redTeam GameUncheckedCreateNestedManyWithoutRedTeamInput No



TeamCreateManyInput

Name Type Nullable
id String No
gameId String | Null Yes
teamId Int | Null Yes
teamMatchId String No
win Boolean No

TeamUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
teamMatchId String | StringFieldUpdateOperationsInput No
win Boolean | BoolFieldUpdateOperationsInput No

TeamUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
gameId String | NullableStringFieldUpdateOperationsInput | Null Yes
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
teamMatchId String | StringFieldUpdateOperationsInput No
win Boolean | BoolFieldUpdateOperationsInput No

TeamBuildingKillCreateInput

Name Type Nullable
id String No
killer PlayerCreateNestedManyWithoutBuildingKillsInput No
type String No
lane String No
side String No
towerLocation String No

TeamBuildingKillUncheckedCreateInput

Name Type Nullable
id String No
killer PlayerUncheckedCreateNestedManyWithoutBuildingKillsInput No
type String No
lane String No
side String No
towerLocation String No

TeamBuildingKillUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
killer PlayerUpdateManyWithoutBuildingKillsInput No
type String | StringFieldUpdateOperationsInput No
lane String | StringFieldUpdateOperationsInput No
side String | StringFieldUpdateOperationsInput No
towerLocation String | StringFieldUpdateOperationsInput No

TeamBuildingKillUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
killer PlayerUncheckedUpdateManyWithoutBuildingKillsInput No
type String | StringFieldUpdateOperationsInput No
lane String | StringFieldUpdateOperationsInput No
side String | StringFieldUpdateOperationsInput No
towerLocation String | StringFieldUpdateOperationsInput No

TeamBuildingKillCreateManyInput

Name Type Nullable
id String No
type String No
lane String No
side String No
towerLocation String No

TeamBuildingKillUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
lane String | StringFieldUpdateOperationsInput No
side String | StringFieldUpdateOperationsInput No
towerLocation String | StringFieldUpdateOperationsInput No

TeamBuildingKillUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
lane String | StringFieldUpdateOperationsInput No
side String | StringFieldUpdateOperationsInput No
towerLocation String | StringFieldUpdateOperationsInput No

TeamMonsterKillCreateInput

Name Type Nullable
id String No
killer PlayerCreateNestedManyWithoutMonsterKillsInput No
type String No
subType String No

TeamMonsterKillUncheckedCreateInput

Name Type Nullable
id String No
killer PlayerUncheckedCreateNestedManyWithoutMonsterKillsInput No
type String No
subType String No

TeamMonsterKillUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
killer PlayerUpdateManyWithoutMonsterKillsInput No
type String | StringFieldUpdateOperationsInput No
subType String | StringFieldUpdateOperationsInput No

TeamMonsterKillUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
killer PlayerUncheckedUpdateManyWithoutMonsterKillsInput No
type String | StringFieldUpdateOperationsInput No
subType String | StringFieldUpdateOperationsInput No

TeamMonsterKillCreateManyInput

Name Type Nullable
id String No
type String No
subType String No

TeamMonsterKillUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
subType String | StringFieldUpdateOperationsInput No

TeamMonsterKillUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
subType String | StringFieldUpdateOperationsInput No

RuneSelectionCreateInput

Name Type Nullable
id String No
runeStyle RuneStyleCreateNestedOneWithoutSelectionInput No
perk Int | Null Yes
var1 Int | Null Yes
var2 Int | Null Yes
var3 Int | Null Yes

RuneSelectionUncheckedCreateInput

Name Type Nullable
id String No
runeStyleId String | Null Yes
perk Int | Null Yes
var1 Int | Null Yes
var2 Int | Null Yes
var3 Int | Null Yes

RuneSelectionUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
runeStyle RuneStyleUpdateOneWithoutSelectionInput No
perk Int | NullableIntFieldUpdateOperationsInput | Null Yes
var1 Int | NullableIntFieldUpdateOperationsInput | Null Yes
var2 Int | NullableIntFieldUpdateOperationsInput | Null Yes
var3 Int | NullableIntFieldUpdateOperationsInput | Null Yes

RuneSelectionUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
runeStyleId String | NullableStringFieldUpdateOperationsInput | Null Yes
perk Int | NullableIntFieldUpdateOperationsInput | Null Yes
var1 Int | NullableIntFieldUpdateOperationsInput | Null Yes
var2 Int | NullableIntFieldUpdateOperationsInput | Null Yes
var3 Int | NullableIntFieldUpdateOperationsInput | Null Yes

RuneSelectionCreateManyInput

Name Type Nullable
id String No
runeStyleId String | Null Yes
perk Int | Null Yes
var1 Int | Null Yes
var2 Int | Null Yes
var3 Int | Null Yes

RuneSelectionUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
perk Int | NullableIntFieldUpdateOperationsInput | Null Yes
var1 Int | NullableIntFieldUpdateOperationsInput | Null Yes
var2 Int | NullableIntFieldUpdateOperationsInput | Null Yes
var3 Int | NullableIntFieldUpdateOperationsInput | Null Yes

RuneSelectionUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
runeStyleId String | NullableStringFieldUpdateOperationsInput | Null Yes
perk Int | NullableIntFieldUpdateOperationsInput | Null Yes
var1 Int | NullableIntFieldUpdateOperationsInput | Null Yes
var2 Int | NullableIntFieldUpdateOperationsInput | Null Yes
var3 Int | NullableIntFieldUpdateOperationsInput | Null Yes

RuneStyleCreateInput

Name Type Nullable
id String No
playerRunes PlayerRuneCreateNestedOneWithoutRuneStyleInput No
selection RuneSelectionCreateNestedManyWithoutRuneStyleInput No
description String No
style Int | Null Yes

RuneStyleUncheckedCreateInput

Name Type Nullable
id String No
playerRunesId String | Null Yes
selection RuneSelectionUncheckedCreateNestedManyWithoutRuneStyleInput No
description String No
style Int | Null Yes

RuneStyleUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
playerRunes PlayerRuneUpdateOneWithoutRuneStyleInput No
selection RuneSelectionUpdateManyWithoutRuneStyleInput No
description String | StringFieldUpdateOperationsInput No
style Int | NullableIntFieldUpdateOperationsInput | Null Yes

RuneStyleUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
playerRunesId String | NullableStringFieldUpdateOperationsInput | Null Yes
selection RuneSelectionUncheckedUpdateManyWithoutRuneStyleInput No
description String | StringFieldUpdateOperationsInput No
style Int | NullableIntFieldUpdateOperationsInput | Null Yes

RuneStyleCreateManyInput

Name Type Nullable
id String No
playerRunesId String | Null Yes
description String No
style Int | Null Yes

RuneStyleUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
style Int | NullableIntFieldUpdateOperationsInput | Null Yes

RuneStyleUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
playerRunesId String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | StringFieldUpdateOperationsInput No
style Int | NullableIntFieldUpdateOperationsInput | Null Yes

StringFilter

Name Type Nullable
equals String No
in String No
notIn String No
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
mode QueryMode No
not String | NestedStringFilter No

ProfileRelationFilter

Name Type Nullable
is ProfileWhereInput | Null Yes
isNot ProfileWhereInput | Null Yes

StringNullableFilter

Name Type Nullable
equals String | Null Yes
in String | Null Yes
notIn String | Null Yes
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
mode QueryMode No
not String | NestedStringNullableFilter | Null Yes

IntNullableFilter

Name Type Nullable
equals Int | Null Yes
in Int | Null Yes
notIn Int | Null Yes
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntNullableFilter | Null Yes

ActivityCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
profileId SortOrder No
month SortOrder No
year SortOrder No
day SortOrder No
gamesPlayed SortOrder No

ActivityAvgOrderByAggregateInput

Name Type Nullable
month SortOrder No
year SortOrder No
day SortOrder No
gamesPlayed SortOrder No

ActivityMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
profileId SortOrder No
month SortOrder No
year SortOrder No
day SortOrder No
gamesPlayed SortOrder No

ActivityMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
profileId SortOrder No
month SortOrder No
year SortOrder No
day SortOrder No
gamesPlayed SortOrder No

ActivitySumOrderByAggregateInput

Name Type Nullable
month SortOrder No
year SortOrder No
day SortOrder No
gamesPlayed SortOrder No

StringWithAggregatesFilter

Name Type Nullable
equals String No
in String No
notIn String No
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
mode QueryMode No
not String | NestedStringWithAggregatesFilter No
_count NestedIntFilter No
_min NestedStringFilter No
_max NestedStringFilter No

StringNullableWithAggregatesFilter

Name Type Nullable
equals String | Null Yes
in String | Null Yes
notIn String | Null Yes
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
mode QueryMode No
not String | NestedStringNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedStringNullableFilter No
_max NestedStringNullableFilter No

IntNullableWithAggregatesFilter

Name Type Nullable
equals Int | Null Yes
in Int | Null Yes
notIn Int | Null Yes
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedFloatNullableFilter No
_sum NestedIntNullableFilter No
_min NestedIntNullableFilter No
_max NestedIntNullableFilter No

ChampionWinrateCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
profileId SortOrder No
champion SortOrder No
wins SortOrder No
games SortOrder No
spell1Casts SortOrder No
spell2Casts SortOrder No
spell3Casts SortOrder No
spell4Casts SortOrder No

ChampionWinrateAvgOrderByAggregateInput

Name Type Nullable
wins SortOrder No
games SortOrder No
spell1Casts SortOrder No
spell2Casts SortOrder No
spell3Casts SortOrder No
spell4Casts SortOrder No

ChampionWinrateMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
profileId SortOrder No
champion SortOrder No
wins SortOrder No
games SortOrder No
spell1Casts SortOrder No
spell2Casts SortOrder No
spell3Casts SortOrder No
spell4Casts SortOrder No

ChampionWinrateMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
profileId SortOrder No
champion SortOrder No
wins SortOrder No
games SortOrder No
spell1Casts SortOrder No
spell2Casts SortOrder No
spell3Casts SortOrder No
spell4Casts SortOrder No

ChampionWinrateSumOrderByAggregateInput

Name Type Nullable
wins SortOrder No
games SortOrder No
spell1Casts SortOrder No
spell2Casts SortOrder No
spell3Casts SortOrder No
spell4Casts SortOrder No

DuoCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
profileId SortOrder No
name SortOrder No
wins SortOrder No
losses SortOrder No
winrate SortOrder No

DuoAvgOrderByAggregateInput

Name Type Nullable
wins SortOrder No
losses SortOrder No

DuoMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
profileId SortOrder No
name SortOrder No
wins SortOrder No
losses SortOrder No
winrate SortOrder No

DuoMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
profileId SortOrder No
name SortOrder No
wins SortOrder No
losses SortOrder No
winrate SortOrder No

DuoSumOrderByAggregateInput

Name Type Nullable
wins SortOrder No
losses SortOrder No

BoolFilter

Name Type Nullable
equals Boolean No
not Boolean | NestedBoolFilter No

ConstantCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
startTime SortOrder No
currentSeason SortOrder No
seeding SortOrder No

ConstantMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
startTime SortOrder No
currentSeason SortOrder No
seeding SortOrder No

ConstantMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
startTime SortOrder No
currentSeason SortOrder No
seeding SortOrder No

BoolWithAggregatesFilter

Name Type Nullable
equals Boolean No
not Boolean | NestedBoolWithAggregatesFilter No
_count NestedIntFilter No
_min NestedBoolFilter No
_max NestedBoolFilter No

PositionListRelationFilter

Name Type Nullable
every PositionWhereInput No
some PositionWhereInput No
none PositionWhereInput No

PositionOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

EventCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
timestamp SortOrder No

EventAvgOrderByAggregateInput

Name Type Nullable
timestamp SortOrder No

EventMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
timestamp SortOrder No

EventMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
timestamp SortOrder No

EventSumOrderByAggregateInput

Name Type Nullable
timestamp SortOrder No

TeamRelationFilter

Name Type Nullable
is TeamWhereInput | Null Yes
isNot TeamWhereInput | Null Yes

SourceListRelationFilter

Name Type Nullable
every SourceWhereInput No
some SourceWhereInput No
none SourceWhereInput No

PlayerEndOfGameStatListRelationFilter

Name Type Nullable
every PlayerEndOfGameStatWhereInput No
some PlayerEndOfGameStatWhereInput No
none PlayerEndOfGameStatWhereInput No

TeamListRelationFilter

Name Type Nullable
every TeamWhereInput No
some TeamWhereInput No
none TeamWhereInput No

SourceOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

PlayerEndOfGameStatOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

TeamOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

GameCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
matchId SortOrder No
gameId SortOrder No
gameCreation SortOrder No
gameStartTimestamp SortOrder No
gameEndTimestamp SortOrder No
duration SortOrder No
start SortOrder No
gameVersion SortOrder No
blueTeamId SortOrder No
redTeamId SortOrder No
tournament SortOrder No
gameInSeries SortOrder No
vod SortOrder No
platformId SortOrder No

GameAvgOrderByAggregateInput

Name Type Nullable
duration SortOrder No
gameInSeries SortOrder No

GameMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
matchId SortOrder No
gameId SortOrder No
gameCreation SortOrder No
gameStartTimestamp SortOrder No
gameEndTimestamp SortOrder No
duration SortOrder No
start SortOrder No
gameVersion SortOrder No
blueTeamId SortOrder No
redTeamId SortOrder No
tournament SortOrder No
gameInSeries SortOrder No
vod SortOrder No
platformId SortOrder No

GameMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
matchId SortOrder No
gameId SortOrder No
gameCreation SortOrder No
gameStartTimestamp SortOrder No
gameEndTimestamp SortOrder No
duration SortOrder No
start SortOrder No
gameVersion SortOrder No
blueTeamId SortOrder No
redTeamId SortOrder No
tournament SortOrder No
gameInSeries SortOrder No
vod SortOrder No
platformId SortOrder No

GameSumOrderByAggregateInput

Name Type Nullable
duration SortOrder No
gameInSeries SortOrder No

ObjectiveCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
teamId SortOrder No
first SortOrder No
kills SortOrder No
type SortOrder No

ObjectiveAvgOrderByAggregateInput

Name Type Nullable
kills SortOrder No

ObjectiveMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
teamId SortOrder No
first SortOrder No
kills SortOrder No
type SortOrder No

ObjectiveMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
teamId SortOrder No
first SortOrder No
kills SortOrder No
type SortOrder No

ObjectiveSumOrderByAggregateInput

Name Type Nullable
kills SortOrder No

PickBanCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
teamId SortOrder No
championId SortOrder No
pickTurn SortOrder No

PickBanAvgOrderByAggregateInput

Name Type Nullable
championId SortOrder No
pickTurn SortOrder No

PickBanMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
teamId SortOrder No
championId SortOrder No
pickTurn SortOrder No

PickBanMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
teamId SortOrder No
championId SortOrder No
pickTurn SortOrder No

PickBanSumOrderByAggregateInput

Name Type Nullable
championId SortOrder No
pickTurn SortOrder No

PlayerKillListRelationFilter

Name Type Nullable
every PlayerKillWhereInput No
some PlayerKillWhereInput No
none PlayerKillWhereInput No

TeamMonsterKillListRelationFilter

Name Type Nullable
every TeamMonsterKillWhereInput No
some TeamMonsterKillWhereInput No
none TeamMonsterKillWhereInput No

TeamBuildingKillListRelationFilter

Name Type Nullable
every TeamBuildingKillWhereInput No
some TeamBuildingKillWhereInput No
none TeamBuildingKillWhereInput No

PlayerItemEventListRelationFilter

Name Type Nullable
every PlayerItemEventWhereInput No
some PlayerItemEventWhereInput No
none PlayerItemEventWhereInput No

PlayerSnapshotListRelationFilter

Name Type Nullable
every PlayerSnapshotWhereInput No
some PlayerSnapshotWhereInput No
none PlayerSnapshotWhereInput No

PlayerWardEventListRelationFilter

Name Type Nullable
every PlayerWardEventWhereInput No
some PlayerWardEventWhereInput No
none PlayerWardEventWhereInput No

PlayerSkillLevelUpEventListRelationFilter

Name Type Nullable
every PlayerSkillLevelUpEventWhereInput No
some PlayerSkillLevelUpEventWhereInput No
none PlayerSkillLevelUpEventWhereInput No

PlayerKillOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

TeamMonsterKillOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

TeamBuildingKillOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

PlayerItemEventOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

PlayerSnapshotOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

PlayerWardEventOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

PlayerSkillLevelUpEventOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

PlayerCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
puuid SortOrder No
accountId SortOrder No
platformId SortOrder No
summonerId SortOrder No
summonerName SortOrder No
summonerLevel SortOrder No
profileIconId SortOrder No
revisionDate SortOrder No
profileId SortOrder No

PlayerAvgOrderByAggregateInput

Name Type Nullable
summonerLevel SortOrder No
profileIconId SortOrder No

PlayerMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
puuid SortOrder No
accountId SortOrder No
platformId SortOrder No
summonerId SortOrder No
summonerName SortOrder No
summonerLevel SortOrder No
profileIconId SortOrder No
revisionDate SortOrder No
profileId SortOrder No

PlayerMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
puuid SortOrder No
accountId SortOrder No
platformId SortOrder No
summonerId SortOrder No
summonerName SortOrder No
summonerLevel SortOrder No
profileIconId SortOrder No
revisionDate SortOrder No
profileId SortOrder No

PlayerSumOrderByAggregateInput

Name Type Nullable
summonerLevel SortOrder No
profileIconId SortOrder No

PlayerRelationFilter

Name Type Nullable
is PlayerWhereInput | Null Yes
isNot PlayerWhereInput | Null Yes

GameRelationFilter

Name Type Nullable
is GameWhereInput | Null Yes
isNot GameWhereInput | Null Yes

PlayerRuneRelationFilter

Name Type Nullable
is PlayerRuneWhereInput | Null Yes
isNot PlayerRuneWhereInput | Null Yes

PlayerItemRelationFilter

Name Type Nullable
is PlayerItemWhereInput | Null Yes
isNot PlayerItemWhereInput | Null Yes

PlayerEndOfGameStatCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
playerId SortOrder No
gameId SortOrder No
perksId SortOrder No
itemsId SortOrder No
assists SortOrder No
baronKills SortOrder No
bountyLevel SortOrder No
championExperience SortOrder No
championLevel SortOrder No
championId SortOrder No
championName SortOrder No
championTransform SortOrder No
consumablesPurchased SortOrder No
damageDealtToBuildings SortOrder No
damageDealtToObjectives SortOrder No
damageDealtToTurrets SortOrder No
damageSelfMitigated SortOrder No
deaths SortOrder No
detectorWardsPlaced SortOrder No
doubleKills SortOrder No
dragonKills SortOrder No
firstBlood SortOrder No
firstBloodAssist SortOrder No
firstTowerKill SortOrder No
firstTowerAssist SortOrder No
gameEndedInEarlySurrender SortOrder No
gameEndedInSurrender SortOrder No
goldEarned SortOrder No
goldSpent SortOrder No
individualPosition SortOrder No
inhibitorKills SortOrder No
inhibitorTakedowns SortOrder No
inhibitorsLost SortOrder No
item0 SortOrder No
item1 SortOrder No
item2 SortOrder No
item3 SortOrder No
item4 SortOrder No
item5 SortOrder No
item6 SortOrder No
itemsPurchased SortOrder No
killingSprees SortOrder No
kills SortOrder No
lane SortOrder No
largestCriticalStrike SortOrder No
largestKillingSpree SortOrder No
largestMultiKill SortOrder No
longestTimeSpentLiving SortOrder No
magicDamageDealt SortOrder No
magicDamageDealtToChampions SortOrder No
magicDamageTaken SortOrder No
neutralMinionsKilled SortOrder No
nexusKills SortOrder No
nexusLost SortOrder No
nexusTakedowns SortOrder No
objectivesStolen SortOrder No
objectivesStolenAssists SortOrder No
participantId SortOrder No
pentaKills SortOrder No
physicalDamageDealt SortOrder No
physicalDamageDealtToChampions SortOrder No
physicalDamageTaken SortOrder No
quadraKills SortOrder No
riotIdName SortOrder No
riotIdTagline SortOrder No
role SortOrder No
sightWardsBoughtInGame SortOrder No
spell1Casts SortOrder No
spell2Casts SortOrder No
spell3Casts SortOrder No
spell4Casts SortOrder No
summoner1Casts SortOrder No
summoner1Id SortOrder No
summoner2Casts SortOrder No
summoner2Id SortOrder No
summonerLevel SortOrder No
summonerName SortOrder No
teamEarlySurrendered SortOrder No
teamId SortOrder No
teamPosition SortOrder No
timeCCingOthers SortOrder No
timePlayed SortOrder No
totalDamageDealt SortOrder No
totalDamageDealtToChampions SortOrder No
totalDamageShieldedOnTeammates SortOrder No
totalDamageTaken SortOrder No
totalHeal SortOrder No
totalHealsOnTeammates SortOrder No
totalMinionsKilled SortOrder No
totalTimeCCDealt SortOrder No
totalTimeSpentDead SortOrder No
totalUnitsHealed SortOrder No
tripleKills SortOrder No
trueDamageDealt SortOrder No
trueDamageDealtToChampions SortOrder No
trueDamageTaken SortOrder No
turretsKilled SortOrder No
turretTakedowns SortOrder No
turretsLost SortOrder No
unrealKills SortOrder No
visionScore SortOrder No
visionWardsBoughtInGame SortOrder No
wardsKilled SortOrder No
wardsPlaced SortOrder No
win SortOrder No

PlayerEndOfGameStatAvgOrderByAggregateInput

Name Type Nullable
assists SortOrder No
baronKills SortOrder No
bountyLevel SortOrder No
championExperience SortOrder No
championLevel SortOrder No
championId SortOrder No
championTransform SortOrder No
consumablesPurchased SortOrder No
damageDealtToBuildings SortOrder No
damageDealtToObjectives SortOrder No
damageDealtToTurrets SortOrder No
damageSelfMitigated SortOrder No
deaths SortOrder No
detectorWardsPlaced SortOrder No
doubleKills SortOrder No
dragonKills SortOrder No
goldEarned SortOrder No
goldSpent SortOrder No
inhibitorKills SortOrder No
inhibitorTakedowns SortOrder No
inhibitorsLost SortOrder No
item0 SortOrder No
item1 SortOrder No
item2 SortOrder No
item3 SortOrder No
item4 SortOrder No
item5 SortOrder No
item6 SortOrder No
itemsPurchased SortOrder No
killingSprees SortOrder No
kills SortOrder No
largestCriticalStrike SortOrder No
largestKillingSpree SortOrder No
largestMultiKill SortOrder No
longestTimeSpentLiving SortOrder No
magicDamageDealt SortOrder No
magicDamageDealtToChampions SortOrder No
magicDamageTaken SortOrder No
neutralMinionsKilled SortOrder No
nexusKills SortOrder No
nexusLost SortOrder No
nexusTakedowns SortOrder No
objectivesStolen SortOrder No
objectivesStolenAssists SortOrder No
participantId SortOrder No
pentaKills SortOrder No
physicalDamageDealt SortOrder No
physicalDamageDealtToChampions SortOrder No
physicalDamageTaken SortOrder No
quadraKills SortOrder No
sightWardsBoughtInGame SortOrder No
spell1Casts SortOrder No
spell2Casts SortOrder No
spell3Casts SortOrder No
spell4Casts SortOrder No
summoner1Casts SortOrder No
summoner1Id SortOrder No
summoner2Casts SortOrder No
summoner2Id SortOrder No
summonerLevel SortOrder No
teamId SortOrder No
timeCCingOthers SortOrder No
timePlayed SortOrder No
totalDamageDealt SortOrder No
totalDamageDealtToChampions SortOrder No
totalDamageShieldedOnTeammates SortOrder No
totalDamageTaken SortOrder No
totalHeal SortOrder No
totalHealsOnTeammates SortOrder No
totalMinionsKilled SortOrder No
totalTimeCCDealt SortOrder No
totalTimeSpentDead SortOrder No
totalUnitsHealed SortOrder No
tripleKills SortOrder No
trueDamageDealt SortOrder No
trueDamageDealtToChampions SortOrder No
trueDamageTaken SortOrder No
turretsKilled SortOrder No
turretTakedowns SortOrder No
turretsLost SortOrder No
unrealKills SortOrder No
visionScore SortOrder No
visionWardsBoughtInGame SortOrder No
wardsKilled SortOrder No
wardsPlaced SortOrder No

PlayerEndOfGameStatMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
playerId SortOrder No
gameId SortOrder No
perksId SortOrder No
itemsId SortOrder No
assists SortOrder No
baronKills SortOrder No
bountyLevel SortOrder No
championExperience SortOrder No
championLevel SortOrder No
championId SortOrder No
championName SortOrder No
championTransform SortOrder No
consumablesPurchased SortOrder No
damageDealtToBuildings SortOrder No
damageDealtToObjectives SortOrder No
damageDealtToTurrets SortOrder No
damageSelfMitigated SortOrder No
deaths SortOrder No
detectorWardsPlaced SortOrder No
doubleKills SortOrder No
dragonKills SortOrder No
firstBlood SortOrder No
firstBloodAssist SortOrder No
firstTowerKill SortOrder No
firstTowerAssist SortOrder No
gameEndedInEarlySurrender SortOrder No
gameEndedInSurrender SortOrder No
goldEarned SortOrder No
goldSpent SortOrder No
individualPosition SortOrder No
inhibitorKills SortOrder No
inhibitorTakedowns SortOrder No
inhibitorsLost SortOrder No
item0 SortOrder No
item1 SortOrder No
item2 SortOrder No
item3 SortOrder No
item4 SortOrder No
item5 SortOrder No
item6 SortOrder No
itemsPurchased SortOrder No
killingSprees SortOrder No
kills SortOrder No
lane SortOrder No
largestCriticalStrike SortOrder No
largestKillingSpree SortOrder No
largestMultiKill SortOrder No
longestTimeSpentLiving SortOrder No
magicDamageDealt SortOrder No
magicDamageDealtToChampions SortOrder No
magicDamageTaken SortOrder No
neutralMinionsKilled SortOrder No
nexusKills SortOrder No
nexusLost SortOrder No
nexusTakedowns SortOrder No
objectivesStolen SortOrder No
objectivesStolenAssists SortOrder No
participantId SortOrder No
pentaKills SortOrder No
physicalDamageDealt SortOrder No
physicalDamageDealtToChampions SortOrder No
physicalDamageTaken SortOrder No
quadraKills SortOrder No
riotIdName SortOrder No
riotIdTagline SortOrder No
role SortOrder No
sightWardsBoughtInGame SortOrder No
spell1Casts SortOrder No
spell2Casts SortOrder No
spell3Casts SortOrder No
spell4Casts SortOrder No
summoner1Casts SortOrder No
summoner1Id SortOrder No
summoner2Casts SortOrder No
summoner2Id SortOrder No
summonerLevel SortOrder No
summonerName SortOrder No
teamEarlySurrendered SortOrder No
teamId SortOrder No
teamPosition SortOrder No
timeCCingOthers SortOrder No
timePlayed SortOrder No
totalDamageDealt SortOrder No
totalDamageDealtToChampions SortOrder No
totalDamageShieldedOnTeammates SortOrder No
totalDamageTaken SortOrder No
totalHeal SortOrder No
totalHealsOnTeammates SortOrder No
totalMinionsKilled SortOrder No
totalTimeCCDealt SortOrder No
totalTimeSpentDead SortOrder No
totalUnitsHealed SortOrder No
tripleKills SortOrder No
trueDamageDealt SortOrder No
trueDamageDealtToChampions SortOrder No
trueDamageTaken SortOrder No
turretsKilled SortOrder No
turretTakedowns SortOrder No
turretsLost SortOrder No
unrealKills SortOrder No
visionScore SortOrder No
visionWardsBoughtInGame SortOrder No
wardsKilled SortOrder No
wardsPlaced SortOrder No
win SortOrder No

PlayerEndOfGameStatMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
playerId SortOrder No
gameId SortOrder No
perksId SortOrder No
itemsId SortOrder No
assists SortOrder No
baronKills SortOrder No
bountyLevel SortOrder No
championExperience SortOrder No
championLevel SortOrder No
championId SortOrder No
championName SortOrder No
championTransform SortOrder No
consumablesPurchased SortOrder No
damageDealtToBuildings SortOrder No
damageDealtToObjectives SortOrder No
damageDealtToTurrets SortOrder No
damageSelfMitigated SortOrder No
deaths SortOrder No
detectorWardsPlaced SortOrder No
doubleKills SortOrder No
dragonKills SortOrder No
firstBlood SortOrder No
firstBloodAssist SortOrder No
firstTowerKill SortOrder No
firstTowerAssist SortOrder No
gameEndedInEarlySurrender SortOrder No
gameEndedInSurrender SortOrder No
goldEarned SortOrder No
goldSpent SortOrder No
individualPosition SortOrder No
inhibitorKills SortOrder No
inhibitorTakedowns SortOrder No
inhibitorsLost SortOrder No
item0 SortOrder No
item1 SortOrder No
item2 SortOrder No
item3 SortOrder No
item4 SortOrder No
item5 SortOrder No
item6 SortOrder No
itemsPurchased SortOrder No
killingSprees SortOrder No
kills SortOrder No
lane SortOrder No
largestCriticalStrike SortOrder No
largestKillingSpree SortOrder No
largestMultiKill SortOrder No
longestTimeSpentLiving SortOrder No
magicDamageDealt SortOrder No
magicDamageDealtToChampions SortOrder No
magicDamageTaken SortOrder No
neutralMinionsKilled SortOrder No
nexusKills SortOrder No
nexusLost SortOrder No
nexusTakedowns SortOrder No
objectivesStolen SortOrder No
objectivesStolenAssists SortOrder No
participantId SortOrder No
pentaKills SortOrder No
physicalDamageDealt SortOrder No
physicalDamageDealtToChampions SortOrder No
physicalDamageTaken SortOrder No
quadraKills SortOrder No
riotIdName SortOrder No
riotIdTagline SortOrder No
role SortOrder No
sightWardsBoughtInGame SortOrder No
spell1Casts SortOrder No
spell2Casts SortOrder No
spell3Casts SortOrder No
spell4Casts SortOrder No
summoner1Casts SortOrder No
summoner1Id SortOrder No
summoner2Casts SortOrder No
summoner2Id SortOrder No
summonerLevel SortOrder No
summonerName SortOrder No
teamEarlySurrendered SortOrder No
teamId SortOrder No
teamPosition SortOrder No
timeCCingOthers SortOrder No
timePlayed SortOrder No
totalDamageDealt SortOrder No
totalDamageDealtToChampions SortOrder No
totalDamageShieldedOnTeammates SortOrder No
totalDamageTaken SortOrder No
totalHeal SortOrder No
totalHealsOnTeammates SortOrder No
totalMinionsKilled SortOrder No
totalTimeCCDealt SortOrder No
totalTimeSpentDead SortOrder No
totalUnitsHealed SortOrder No
tripleKills SortOrder No
trueDamageDealt SortOrder No
trueDamageDealtToChampions SortOrder No
trueDamageTaken SortOrder No
turretsKilled SortOrder No
turretTakedowns SortOrder No
turretsLost SortOrder No
unrealKills SortOrder No
visionScore SortOrder No
visionWardsBoughtInGame SortOrder No
wardsKilled SortOrder No
wardsPlaced SortOrder No
win SortOrder No

PlayerEndOfGameStatSumOrderByAggregateInput

Name Type Nullable
assists SortOrder No
baronKills SortOrder No
bountyLevel SortOrder No
championExperience SortOrder No
championLevel SortOrder No
championId SortOrder No
championTransform SortOrder No
consumablesPurchased SortOrder No
damageDealtToBuildings SortOrder No
damageDealtToObjectives SortOrder No
damageDealtToTurrets SortOrder No
damageSelfMitigated SortOrder No
deaths SortOrder No
detectorWardsPlaced SortOrder No
doubleKills SortOrder No
dragonKills SortOrder No
goldEarned SortOrder No
goldSpent SortOrder No
inhibitorKills SortOrder No
inhibitorTakedowns SortOrder No
inhibitorsLost SortOrder No
item0 SortOrder No
item1 SortOrder No
item2 SortOrder No
item3 SortOrder No
item4 SortOrder No
item5 SortOrder No
item6 SortOrder No
itemsPurchased SortOrder No
killingSprees SortOrder No
kills SortOrder No
largestCriticalStrike SortOrder No
largestKillingSpree SortOrder No
largestMultiKill SortOrder No
longestTimeSpentLiving SortOrder No
magicDamageDealt SortOrder No
magicDamageDealtToChampions SortOrder No
magicDamageTaken SortOrder No
neutralMinionsKilled SortOrder No
nexusKills SortOrder No
nexusLost SortOrder No
nexusTakedowns SortOrder No
objectivesStolen SortOrder No
objectivesStolenAssists SortOrder No
participantId SortOrder No
pentaKills SortOrder No
physicalDamageDealt SortOrder No
physicalDamageDealtToChampions SortOrder No
physicalDamageTaken SortOrder No
quadraKills SortOrder No
sightWardsBoughtInGame SortOrder No
spell1Casts SortOrder No
spell2Casts SortOrder No
spell3Casts SortOrder No
spell4Casts SortOrder No
summoner1Casts SortOrder No
summoner1Id SortOrder No
summoner2Casts SortOrder No
summoner2Id SortOrder No
summonerLevel SortOrder No
teamId SortOrder No
timeCCingOthers SortOrder No
timePlayed SortOrder No
totalDamageDealt SortOrder No
totalDamageDealtToChampions SortOrder No
totalDamageShieldedOnTeammates SortOrder No
totalDamageTaken SortOrder No
totalHeal SortOrder No
totalHealsOnTeammates SortOrder No
totalMinionsKilled SortOrder No
totalTimeCCDealt SortOrder No
totalTimeSpentDead SortOrder No
totalUnitsHealed SortOrder No
tripleKills SortOrder No
trueDamageDealt SortOrder No
trueDamageDealtToChampions SortOrder No
trueDamageTaken SortOrder No
turretsKilled SortOrder No
turretTakedowns SortOrder No
turretsLost SortOrder No
unrealKills SortOrder No
visionScore SortOrder No
visionWardsBoughtInGame SortOrder No
wardsKilled SortOrder No
wardsPlaced SortOrder No

PlayerItemCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
slot SortOrder No
itemId SortOrder No
name SortOrder No

PlayerItemAvgOrderByAggregateInput

Name Type Nullable
slot SortOrder No
itemId SortOrder No

PlayerItemMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
slot SortOrder No
itemId SortOrder No
name SortOrder No

PlayerItemMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
slot SortOrder No
itemId SortOrder No
name SortOrder No

PlayerItemSumOrderByAggregateInput

Name Type Nullable
slot SortOrder No
itemId SortOrder No

PlayerListRelationFilter

Name Type Nullable
every PlayerWhereInput No
some PlayerWhereInput No
none PlayerWhereInput No

PlayerOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

PlayerItemEventCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
type SortOrder No
itemId SortOrder No
name SortOrder No
undoId SortOrder No

PlayerItemEventAvgOrderByAggregateInput

Name Type Nullable
itemId SortOrder No
undoId SortOrder No

PlayerItemEventMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
type SortOrder No
itemId SortOrder No
name SortOrder No
undoId SortOrder No

PlayerItemEventMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
type SortOrder No
itemId SortOrder No
name SortOrder No
undoId SortOrder No

PlayerItemEventSumOrderByAggregateInput

Name Type Nullable
itemId SortOrder No
undoId SortOrder No

PlayerKillCountOrderByAggregateInput

Name Type Nullable
id SortOrder No

PlayerKillMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No

PlayerKillMinOrderByAggregateInput

Name Type Nullable
id SortOrder No

PlayerEndOfGameStatRelationFilter

Name Type Nullable
is PlayerEndOfGameStatWhereInput | Null Yes
isNot PlayerEndOfGameStatWhereInput | Null Yes

RuneStyleListRelationFilter

Name Type Nullable
every RuneStyleWhereInput No
some RuneStyleWhereInput No
none RuneStyleWhereInput No

RuneStyleOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

PlayerRuneCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
defense SortOrder No
flex SortOrder No
offense SortOrder No

PlayerRuneAvgOrderByAggregateInput

Name Type Nullable
defense SortOrder No
flex SortOrder No
offense SortOrder No

PlayerRuneMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
defense SortOrder No
flex SortOrder No
offense SortOrder No

PlayerRuneMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
defense SortOrder No
flex SortOrder No
offense SortOrder No

PlayerRuneSumOrderByAggregateInput

Name Type Nullable
defense SortOrder No
flex SortOrder No
offense SortOrder No

PlayerSkillLevelUpEventCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
type SortOrder No
slot SortOrder No

PlayerSkillLevelUpEventAvgOrderByAggregateInput

Name Type Nullable
slot SortOrder No

PlayerSkillLevelUpEventMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
type SortOrder No
slot SortOrder No

PlayerSkillLevelUpEventMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
type SortOrder No
slot SortOrder No

PlayerSkillLevelUpEventSumOrderByAggregateInput

Name Type Nullable
slot SortOrder No

FloatNullableFilter

Name Type Nullable
equals Float | Null Yes
in Float | Null Yes
notIn Float | Null Yes
lt Float No
lte Float No
gt Float No
gte Float No
not Float | NestedFloatNullableFilter | Null Yes

PlayerSnapshotCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
timestamp SortOrder No
currentGold SortOrder No
totalGold SortOrder No
totalGoldDiff SortOrder No
xp SortOrder No
xpDiff SortOrder No
level SortOrder No
cs SortOrder No
csDiff SortOrder No
monstersKilled SortOrder No
monstersKilledDiff SortOrder No

PlayerSnapshotAvgOrderByAggregateInput

Name Type Nullable
timestamp SortOrder No
currentGold SortOrder No
totalGold SortOrder No
totalGoldDiff SortOrder No
xp SortOrder No
xpDiff SortOrder No
level SortOrder No
cs SortOrder No
csDiff SortOrder No
monstersKilled SortOrder No
monstersKilledDiff SortOrder No

PlayerSnapshotMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
timestamp SortOrder No
currentGold SortOrder No
totalGold SortOrder No
totalGoldDiff SortOrder No
xp SortOrder No
xpDiff SortOrder No
level SortOrder No
cs SortOrder No
csDiff SortOrder No
monstersKilled SortOrder No
monstersKilledDiff SortOrder No

PlayerSnapshotMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
timestamp SortOrder No
currentGold SortOrder No
totalGold SortOrder No
totalGoldDiff SortOrder No
xp SortOrder No
xpDiff SortOrder No
level SortOrder No
cs SortOrder No
csDiff SortOrder No
monstersKilled SortOrder No
monstersKilledDiff SortOrder No

PlayerSnapshotSumOrderByAggregateInput

Name Type Nullable
timestamp SortOrder No
currentGold SortOrder No
totalGold SortOrder No
totalGoldDiff SortOrder No
xp SortOrder No
xpDiff SortOrder No
level SortOrder No
cs SortOrder No
csDiff SortOrder No
monstersKilled SortOrder No
monstersKilledDiff SortOrder No

FloatNullableWithAggregatesFilter

Name Type Nullable
equals Float | Null Yes
in Float | Null Yes
notIn Float | Null Yes
lt Float No
lte Float No
gt Float No
gte Float No
not Float | NestedFloatNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedFloatNullableFilter No
_sum NestedFloatNullableFilter No
_min NestedFloatNullableFilter No
_max NestedFloatNullableFilter No

EnumPlayerWardEventWardTypeTypeNullableFilter

Name Type Nullable
equals PlayerWardEventWardTypeType | Null Yes
in PlayerWardEventWardTypeType[] | Null Yes
notIn PlayerWardEventWardTypeType[] | Null Yes
not PlayerWardEventWardTypeType | NestedEnumPlayerWardEventWardTypeTypeNullableFilter | Null Yes

PlayerWardEventCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
type SortOrder No
wardType SortOrder No

PlayerWardEventMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
type SortOrder No
wardType SortOrder No

PlayerWardEventMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
type SortOrder No
wardType SortOrder No


EventListRelationFilter

Name Type Nullable
every EventWhereInput No
some EventWhereInput No
none EventWhereInput No

EventOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

PositionCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
x SortOrder No
y SortOrder No

PositionAvgOrderByAggregateInput

Name Type Nullable
x SortOrder No
y SortOrder No

PositionMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
x SortOrder No
y SortOrder No

PositionMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
x SortOrder No
y SortOrder No

PositionSumOrderByAggregateInput

Name Type Nullable
x SortOrder No
y SortOrder No

DateTimeFilter

Name Type Nullable
equals DateTime No
in DateTime No
notIn DateTime No
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeFilter No

ActivityListRelationFilter

Name Type Nullable
every ActivityWhereInput No
some ActivityWhereInput No
none ActivityWhereInput No

ChampionWinrateListRelationFilter

Name Type Nullable
every ChampionWinrateWhereInput No
some ChampionWinrateWhereInput No
none ChampionWinrateWhereInput No

DuoListRelationFilter

Name Type Nullable
every DuoWhereInput No
some DuoWhereInput No
none DuoWhereInput No

ActivityOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

ChampionWinrateOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

DuoOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

ProfileCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
update SortOrder No
lastUpdate SortOrder No
kills SortOrder No
deaths SortOrder No
assists SortOrder No
kda SortOrder No
winRate SortOrder No
csPerMinute SortOrder No
damagePerMinute SortOrder No
killsPerMinute SortOrder No
goldPerMinute SortOrder No
averageGameTime SortOrder No
averageTimeSpentDead SortOrder No
totalGameTime SortOrder No

ProfileAvgOrderByAggregateInput

Name Type Nullable
kills SortOrder No
deaths SortOrder No
assists SortOrder No

ProfileMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
update SortOrder No
lastUpdate SortOrder No
kills SortOrder No
deaths SortOrder No
assists SortOrder No
kda SortOrder No
winRate SortOrder No
csPerMinute SortOrder No
damagePerMinute SortOrder No
killsPerMinute SortOrder No
goldPerMinute SortOrder No
averageGameTime SortOrder No
averageTimeSpentDead SortOrder No
totalGameTime SortOrder No

ProfileMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
update SortOrder No
lastUpdate SortOrder No
kills SortOrder No
deaths SortOrder No
assists SortOrder No
kda SortOrder No
winRate SortOrder No
csPerMinute SortOrder No
damagePerMinute SortOrder No
killsPerMinute SortOrder No
goldPerMinute SortOrder No
averageGameTime SortOrder No
averageTimeSpentDead SortOrder No
totalGameTime SortOrder No

ProfileSumOrderByAggregateInput

Name Type Nullable
kills SortOrder No
deaths SortOrder No
assists SortOrder No

DateTimeWithAggregatesFilter

Name Type Nullable
equals DateTime No
in DateTime No
notIn DateTime No
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedDateTimeFilter No
_max NestedDateTimeFilter No

SeedIdentifierCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
identifier SortOrder No
type SortOrder No
timestamp SortOrder No
priority SortOrder No
retrieved SortOrder No

SeedIdentifierMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
identifier SortOrder No
type SortOrder No
timestamp SortOrder No
priority SortOrder No
retrieved SortOrder No

SeedIdentifierMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
identifier SortOrder No
type SortOrder No
timestamp SortOrder No
priority SortOrder No
retrieved SortOrder No

GameListRelationFilter

Name Type Nullable
every GameWhereInput No
some GameWhereInput No
none GameWhereInput No

GameOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

SourceCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
api SortOrder No

SourceMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
api SortOrder No

SourceMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
api SortOrder No

PickBanListRelationFilter

Name Type Nullable
every PickBanWhereInput No
some PickBanWhereInput No
none PickBanWhereInput No

ObjectiveListRelationFilter

Name Type Nullable
every ObjectiveWhereInput No
some ObjectiveWhereInput No
none ObjectiveWhereInput No

PickBanOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

ObjectiveOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

TeamCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
gameId SortOrder No
teamId SortOrder No
teamMatchId SortOrder No
win SortOrder No

TeamAvgOrderByAggregateInput

Name Type Nullable
teamId SortOrder No

TeamMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
gameId SortOrder No
teamId SortOrder No
teamMatchId SortOrder No
win SortOrder No

TeamMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
gameId SortOrder No
teamId SortOrder No
teamMatchId SortOrder No
win SortOrder No

TeamSumOrderByAggregateInput

Name Type Nullable
teamId SortOrder No

TeamBuildingKillCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
type SortOrder No
lane SortOrder No
side SortOrder No
towerLocation SortOrder No

TeamBuildingKillMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
type SortOrder No
lane SortOrder No
side SortOrder No
towerLocation SortOrder No

TeamBuildingKillMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
type SortOrder No
lane SortOrder No
side SortOrder No
towerLocation SortOrder No

TeamMonsterKillCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
type SortOrder No
subType SortOrder No

TeamMonsterKillMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
type SortOrder No
subType SortOrder No

TeamMonsterKillMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
type SortOrder No
subType SortOrder No

RuneStyleRelationFilter

Name Type Nullable
is RuneStyleWhereInput | Null Yes
isNot RuneStyleWhereInput | Null Yes

RuneSelectionCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
runeStyleId SortOrder No
perk SortOrder No
var1 SortOrder No
var2 SortOrder No
var3 SortOrder No

RuneSelectionAvgOrderByAggregateInput

Name Type Nullable
perk SortOrder No
var1 SortOrder No
var2 SortOrder No
var3 SortOrder No

RuneSelectionMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
runeStyleId SortOrder No
perk SortOrder No
var1 SortOrder No
var2 SortOrder No
var3 SortOrder No

RuneSelectionMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
runeStyleId SortOrder No
perk SortOrder No
var1 SortOrder No
var2 SortOrder No
var3 SortOrder No

RuneSelectionSumOrderByAggregateInput

Name Type Nullable
perk SortOrder No
var1 SortOrder No
var2 SortOrder No
var3 SortOrder No

RuneSelectionListRelationFilter

Name Type Nullable
every RuneSelectionWhereInput No
some RuneSelectionWhereInput No
none RuneSelectionWhereInput No

RuneSelectionOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

RuneStyleCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
playerRunesId SortOrder No
description SortOrder No
style SortOrder No

RuneStyleAvgOrderByAggregateInput

Name Type Nullable
style SortOrder No

RuneStyleMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
playerRunesId SortOrder No
description SortOrder No
style SortOrder No

RuneStyleMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
playerRunesId SortOrder No
description SortOrder No
style SortOrder No

RuneStyleSumOrderByAggregateInput

Name Type Nullable
style SortOrder No

ProfileCreateNestedOneWithoutActivityInput

Name Type Nullable
create ProfileCreateWithoutActivityInput | ProfileUncheckedCreateWithoutActivityInput No
connectOrCreate ProfileCreateOrConnectWithoutActivityInput No
connect ProfileWhereUniqueInput No

StringFieldUpdateOperationsInput

Name Type Nullable
set String No

ProfileUpdateOneWithoutActivityInput

Name Type Nullable
create ProfileCreateWithoutActivityInput | ProfileUncheckedCreateWithoutActivityInput No
connectOrCreate ProfileCreateOrConnectWithoutActivityInput No
upsert ProfileUpsertWithoutActivityInput No
disconnect Boolean No
delete Boolean No
connect ProfileWhereUniqueInput No
update ProfileUpdateWithoutActivityInput | ProfileUncheckedUpdateWithoutActivityInput No

NullableIntFieldUpdateOperationsInput

Name Type Nullable
set Int | Null Yes
increment Int No
decrement Int No
multiply Int No
divide Int No

NullableStringFieldUpdateOperationsInput

Name Type Nullable
set String | Null Yes

ProfileCreateNestedOneWithoutChampionWinrateInput

Name Type Nullable
create ProfileCreateWithoutChampionWinrateInput | ProfileUncheckedCreateWithoutChampionWinrateInput No
connectOrCreate ProfileCreateOrConnectWithoutChampionWinrateInput No
connect ProfileWhereUniqueInput No


ProfileCreateNestedOneWithoutDuosInput

Name Type Nullable
create ProfileCreateWithoutDuosInput | ProfileUncheckedCreateWithoutDuosInput No
connectOrCreate ProfileCreateOrConnectWithoutDuosInput No
connect ProfileWhereUniqueInput No

ProfileUpdateOneWithoutDuosInput

Name Type Nullable
create ProfileCreateWithoutDuosInput | ProfileUncheckedCreateWithoutDuosInput No
connectOrCreate ProfileCreateOrConnectWithoutDuosInput No
upsert ProfileUpsertWithoutDuosInput No
disconnect Boolean No
delete Boolean No
connect ProfileWhereUniqueInput No
update ProfileUpdateWithoutDuosInput | ProfileUncheckedUpdateWithoutDuosInput No

BoolFieldUpdateOperationsInput

Name Type Nullable
set Boolean No



PositionUpdateManyWithoutEventInput

Name Type Nullable
create PositionCreateWithoutEventInput | PositionCreateWithoutEventInput[] | PositionUncheckedCreateWithoutEventInput | PositionUncheckedCreateWithoutEventInput[] No
connectOrCreate PositionCreateOrConnectWithoutEventInput | PositionCreateOrConnectWithoutEventInput[] No
upsert PositionUpsertWithWhereUniqueWithoutEventInput | PositionUpsertWithWhereUniqueWithoutEventInput[] No
set PositionWhereUniqueInput | PositionWhereUniqueInput[] No
disconnect PositionWhereUniqueInput | PositionWhereUniqueInput[] No
delete PositionWhereUniqueInput | PositionWhereUniqueInput[] No
connect PositionWhereUniqueInput | PositionWhereUniqueInput[] No
update PositionUpdateWithWhereUniqueWithoutEventInput | PositionUpdateWithWhereUniqueWithoutEventInput[] No
updateMany PositionUpdateManyWithWhereWithoutEventInput | PositionUpdateManyWithWhereWithoutEventInput[] No
deleteMany PositionScalarWhereInput | PositionScalarWhereInput[] No

PositionUncheckedUpdateManyWithoutEventInput

Name Type Nullable
create PositionCreateWithoutEventInput | PositionCreateWithoutEventInput[] | PositionUncheckedCreateWithoutEventInput | PositionUncheckedCreateWithoutEventInput[] No
connectOrCreate PositionCreateOrConnectWithoutEventInput | PositionCreateOrConnectWithoutEventInput[] No
upsert PositionUpsertWithWhereUniqueWithoutEventInput | PositionUpsertWithWhereUniqueWithoutEventInput[] No
set PositionWhereUniqueInput | PositionWhereUniqueInput[] No
disconnect PositionWhereUniqueInput | PositionWhereUniqueInput[] No
delete PositionWhereUniqueInput | PositionWhereUniqueInput[] No
connect PositionWhereUniqueInput | PositionWhereUniqueInput[] No
update PositionUpdateWithWhereUniqueWithoutEventInput | PositionUpdateWithWhereUniqueWithoutEventInput[] No
updateMany PositionUpdateManyWithWhereWithoutEventInput | PositionUpdateManyWithWhereWithoutEventInput[] No
deleteMany PositionScalarWhereInput | PositionScalarWhereInput[] No

TeamCreateNestedOneWithoutFrom_Game_blueTeamInput

Name Type Nullable
create TeamCreateWithoutFrom_Game_blueTeamInput | TeamUncheckedCreateWithoutFrom_Game_blueTeamInput No
connectOrCreate TeamCreateOrConnectWithoutFrom_Game_blueTeamInput No
connect TeamWhereUniqueInput No

TeamCreateNestedOneWithoutFrom_Game_redTeamInput

Name Type Nullable
create TeamCreateWithoutFrom_Game_redTeamInput | TeamUncheckedCreateWithoutFrom_Game_redTeamInput No
connectOrCreate TeamCreateOrConnectWithoutFrom_Game_redTeamInput No
connect TeamWhereUniqueInput No









SourceUpdateManyWithoutGameInput

Name Type Nullable
create SourceCreateWithoutGameInput | SourceCreateWithoutGameInput[] | SourceUncheckedCreateWithoutGameInput | SourceUncheckedCreateWithoutGameInput[] No
connectOrCreate SourceCreateOrConnectWithoutGameInput | SourceCreateOrConnectWithoutGameInput[] No
upsert SourceUpsertWithWhereUniqueWithoutGameInput | SourceUpsertWithWhereUniqueWithoutGameInput[] No
set SourceWhereUniqueInput | SourceWhereUniqueInput[] No
disconnect SourceWhereUniqueInput | SourceWhereUniqueInput[] No
delete SourceWhereUniqueInput | SourceWhereUniqueInput[] No
connect SourceWhereUniqueInput | SourceWhereUniqueInput[] No
update SourceUpdateWithWhereUniqueWithoutGameInput | SourceUpdateWithWhereUniqueWithoutGameInput[] No
updateMany SourceUpdateManyWithWhereWithoutGameInput | SourceUpdateManyWithWhereWithoutGameInput[] No
deleteMany SourceScalarWhereInput | SourceScalarWhereInput[] No

PlayerEndOfGameStatUpdateManyWithoutGameInput

Name Type Nullable
create PlayerEndOfGameStatCreateWithoutGameInput | PlayerEndOfGameStatCreateWithoutGameInput[] | PlayerEndOfGameStatUncheckedCreateWithoutGameInput | PlayerEndOfGameStatUncheckedCreateWithoutGameInput[] No
connectOrCreate PlayerEndOfGameStatCreateOrConnectWithoutGameInput | PlayerEndOfGameStatCreateOrConnectWithoutGameInput[] No
upsert PlayerEndOfGameStatUpsertWithWhereUniqueWithoutGameInput | PlayerEndOfGameStatUpsertWithWhereUniqueWithoutGameInput[] No
createMany PlayerEndOfGameStatCreateManyGameInputEnvelope No
set PlayerEndOfGameStatWhereUniqueInput | PlayerEndOfGameStatWhereUniqueInput[] No
disconnect PlayerEndOfGameStatWhereUniqueInput | PlayerEndOfGameStatWhereUniqueInput[] No
delete PlayerEndOfGameStatWhereUniqueInput | PlayerEndOfGameStatWhereUniqueInput[] No
connect PlayerEndOfGameStatWhereUniqueInput | PlayerEndOfGameStatWhereUniqueInput[] No
update PlayerEndOfGameStatUpdateWithWhereUniqueWithoutGameInput | PlayerEndOfGameStatUpdateWithWhereUniqueWithoutGameInput[] No
updateMany PlayerEndOfGameStatUpdateManyWithWhereWithoutGameInput | PlayerEndOfGameStatUpdateManyWithWhereWithoutGameInput[] No
deleteMany PlayerEndOfGameStatScalarWhereInput | PlayerEndOfGameStatScalarWhereInput[] No

TeamUpdateManyWithoutGameInput

Name Type Nullable
create TeamCreateWithoutGameInput | TeamCreateWithoutGameInput[] | TeamUncheckedCreateWithoutGameInput | TeamUncheckedCreateWithoutGameInput[] No
connectOrCreate TeamCreateOrConnectWithoutGameInput | TeamCreateOrConnectWithoutGameInput[] No
upsert TeamUpsertWithWhereUniqueWithoutGameInput | TeamUpsertWithWhereUniqueWithoutGameInput[] No
createMany TeamCreateManyGameInputEnvelope No
set TeamWhereUniqueInput | TeamWhereUniqueInput[] No
disconnect TeamWhereUniqueInput | TeamWhereUniqueInput[] No
delete TeamWhereUniqueInput | TeamWhereUniqueInput[] No
connect TeamWhereUniqueInput | TeamWhereUniqueInput[] No
update TeamUpdateWithWhereUniqueWithoutGameInput | TeamUpdateWithWhereUniqueWithoutGameInput[] No
updateMany TeamUpdateManyWithWhereWithoutGameInput | TeamUpdateManyWithWhereWithoutGameInput[] No
deleteMany TeamScalarWhereInput | TeamScalarWhereInput[] No

SourceUncheckedUpdateManyWithoutGameInput

Name Type Nullable
create SourceCreateWithoutGameInput | SourceCreateWithoutGameInput[] | SourceUncheckedCreateWithoutGameInput | SourceUncheckedCreateWithoutGameInput[] No
connectOrCreate SourceCreateOrConnectWithoutGameInput | SourceCreateOrConnectWithoutGameInput[] No
upsert SourceUpsertWithWhereUniqueWithoutGameInput | SourceUpsertWithWhereUniqueWithoutGameInput[] No
set SourceWhereUniqueInput | SourceWhereUniqueInput[] No
disconnect SourceWhereUniqueInput | SourceWhereUniqueInput[] No
delete SourceWhereUniqueInput | SourceWhereUniqueInput[] No
connect SourceWhereUniqueInput | SourceWhereUniqueInput[] No
update SourceUpdateWithWhereUniqueWithoutGameInput | SourceUpdateWithWhereUniqueWithoutGameInput[] No
updateMany SourceUpdateManyWithWhereWithoutGameInput | SourceUpdateManyWithWhereWithoutGameInput[] No
deleteMany SourceScalarWhereInput | SourceScalarWhereInput[] No

PlayerEndOfGameStatUncheckedUpdateManyWithoutGameInput

Name Type Nullable
create PlayerEndOfGameStatCreateWithoutGameInput | PlayerEndOfGameStatCreateWithoutGameInput[] | PlayerEndOfGameStatUncheckedCreateWithoutGameInput | PlayerEndOfGameStatUncheckedCreateWithoutGameInput[] No
connectOrCreate PlayerEndOfGameStatCreateOrConnectWithoutGameInput | PlayerEndOfGameStatCreateOrConnectWithoutGameInput[] No
upsert PlayerEndOfGameStatUpsertWithWhereUniqueWithoutGameInput | PlayerEndOfGameStatUpsertWithWhereUniqueWithoutGameInput[] No
createMany PlayerEndOfGameStatCreateManyGameInputEnvelope No
set PlayerEndOfGameStatWhereUniqueInput | PlayerEndOfGameStatWhereUniqueInput[] No
disconnect PlayerEndOfGameStatWhereUniqueInput | PlayerEndOfGameStatWhereUniqueInput[] No
delete PlayerEndOfGameStatWhereUniqueInput | PlayerEndOfGameStatWhereUniqueInput[] No
connect PlayerEndOfGameStatWhereUniqueInput | PlayerEndOfGameStatWhereUniqueInput[] No
update PlayerEndOfGameStatUpdateWithWhereUniqueWithoutGameInput | PlayerEndOfGameStatUpdateWithWhereUniqueWithoutGameInput[] No
updateMany PlayerEndOfGameStatUpdateManyWithWhereWithoutGameInput | PlayerEndOfGameStatUpdateManyWithWhereWithoutGameInput[] No
deleteMany PlayerEndOfGameStatScalarWhereInput | PlayerEndOfGameStatScalarWhereInput[] No

TeamUncheckedUpdateManyWithoutGameInput

Name Type Nullable
create TeamCreateWithoutGameInput | TeamCreateWithoutGameInput[] | TeamUncheckedCreateWithoutGameInput | TeamUncheckedCreateWithoutGameInput[] No
connectOrCreate TeamCreateOrConnectWithoutGameInput | TeamCreateOrConnectWithoutGameInput[] No
upsert TeamUpsertWithWhereUniqueWithoutGameInput | TeamUpsertWithWhereUniqueWithoutGameInput[] No
createMany TeamCreateManyGameInputEnvelope No
set TeamWhereUniqueInput | TeamWhereUniqueInput[] No
disconnect TeamWhereUniqueInput | TeamWhereUniqueInput[] No
delete TeamWhereUniqueInput | TeamWhereUniqueInput[] No
connect TeamWhereUniqueInput | TeamWhereUniqueInput[] No
update TeamUpdateWithWhereUniqueWithoutGameInput | TeamUpdateWithWhereUniqueWithoutGameInput[] No
updateMany TeamUpdateManyWithWhereWithoutGameInput | TeamUpdateManyWithWhereWithoutGameInput[] No
deleteMany TeamScalarWhereInput | TeamScalarWhereInput[] No

TeamCreateNestedOneWithoutObjectivesInput

Name Type Nullable
create TeamCreateWithoutObjectivesInput | TeamUncheckedCreateWithoutObjectivesInput No
connectOrCreate TeamCreateOrConnectWithoutObjectivesInput No
connect TeamWhereUniqueInput No

TeamUpdateOneWithoutObjectivesInput

Name Type Nullable
create TeamCreateWithoutObjectivesInput | TeamUncheckedCreateWithoutObjectivesInput No
connectOrCreate TeamCreateOrConnectWithoutObjectivesInput No
upsert TeamUpsertWithoutObjectivesInput No
disconnect Boolean No
delete Boolean No
connect TeamWhereUniqueInput No
update TeamUpdateWithoutObjectivesInput | TeamUncheckedUpdateWithoutObjectivesInput No

TeamCreateNestedOneWithoutPickBanInput

Name Type Nullable
create TeamCreateWithoutPickBanInput | TeamUncheckedCreateWithoutPickBanInput No
connectOrCreate TeamCreateOrConnectWithoutPickBanInput No
connect TeamWhereUniqueInput No

TeamUpdateOneWithoutPickBanInput

Name Type Nullable
create TeamCreateWithoutPickBanInput | TeamUncheckedCreateWithoutPickBanInput No
connectOrCreate TeamCreateOrConnectWithoutPickBanInput No
upsert TeamUpsertWithoutPickBanInput No
disconnect Boolean No
delete Boolean No
connect TeamWhereUniqueInput No
update TeamUpdateWithoutPickBanInput | TeamUncheckedUpdateWithoutPickBanInput No




ProfileCreateNestedOneWithoutPlayerInput

Name Type Nullable
create ProfileCreateWithoutPlayerInput | ProfileUncheckedCreateWithoutPlayerInput No
connectOrCreate ProfileCreateOrConnectWithoutPlayerInput No
connect ProfileWhereUniqueInput No


















PlayerKillUpdateManyWithoutKillerInput

Name Type Nullable
create PlayerKillCreateWithoutKillerInput | PlayerKillCreateWithoutKillerInput[] | PlayerKillUncheckedCreateWithoutKillerInput | PlayerKillUncheckedCreateWithoutKillerInput[] No
connectOrCreate PlayerKillCreateOrConnectWithoutKillerInput | PlayerKillCreateOrConnectWithoutKillerInput[] No
upsert PlayerKillUpsertWithWhereUniqueWithoutKillerInput | PlayerKillUpsertWithWhereUniqueWithoutKillerInput[] No
set PlayerKillWhereUniqueInput | PlayerKillWhereUniqueInput[] No
disconnect PlayerKillWhereUniqueInput | PlayerKillWhereUniqueInput[] No
delete PlayerKillWhereUniqueInput | PlayerKillWhereUniqueInput[] No
connect PlayerKillWhereUniqueInput | PlayerKillWhereUniqueInput[] No
update PlayerKillUpdateWithWhereUniqueWithoutKillerInput | PlayerKillUpdateWithWhereUniqueWithoutKillerInput[] No
updateMany PlayerKillUpdateManyWithWhereWithoutKillerInput | PlayerKillUpdateManyWithWhereWithoutKillerInput[] No
deleteMany PlayerKillScalarWhereInput | PlayerKillScalarWhereInput[] No

PlayerKillUpdateManyWithoutVictimInput

Name Type Nullable
create PlayerKillCreateWithoutVictimInput | PlayerKillCreateWithoutVictimInput[] | PlayerKillUncheckedCreateWithoutVictimInput | PlayerKillUncheckedCreateWithoutVictimInput[] No
connectOrCreate PlayerKillCreateOrConnectWithoutVictimInput | PlayerKillCreateOrConnectWithoutVictimInput[] No
upsert PlayerKillUpsertWithWhereUniqueWithoutVictimInput | PlayerKillUpsertWithWhereUniqueWithoutVictimInput[] No
set PlayerKillWhereUniqueInput | PlayerKillWhereUniqueInput[] No
disconnect PlayerKillWhereUniqueInput | PlayerKillWhereUniqueInput[] No
delete PlayerKillWhereUniqueInput | PlayerKillWhereUniqueInput[] No
connect PlayerKillWhereUniqueInput | PlayerKillWhereUniqueInput[] No
update PlayerKillUpdateWithWhereUniqueWithoutVictimInput | PlayerKillUpdateWithWhereUniqueWithoutVictimInput[] No
updateMany PlayerKillUpdateManyWithWhereWithoutVictimInput | PlayerKillUpdateManyWithWhereWithoutVictimInput[] No
deleteMany PlayerKillScalarWhereInput | PlayerKillScalarWhereInput[] No

TeamUpdateManyWithoutPlayersInput

Name Type Nullable
create TeamCreateWithoutPlayersInput | TeamCreateWithoutPlayersInput[] | TeamUncheckedCreateWithoutPlayersInput | TeamUncheckedCreateWithoutPlayersInput[] No
connectOrCreate TeamCreateOrConnectWithoutPlayersInput | TeamCreateOrConnectWithoutPlayersInput[] No
upsert TeamUpsertWithWhereUniqueWithoutPlayersInput | TeamUpsertWithWhereUniqueWithoutPlayersInput[] No
set TeamWhereUniqueInput | TeamWhereUniqueInput[] No
disconnect TeamWhereUniqueInput | TeamWhereUniqueInput[] No
delete TeamWhereUniqueInput | TeamWhereUniqueInput[] No
connect TeamWhereUniqueInput | TeamWhereUniqueInput[] No
update TeamUpdateWithWhereUniqueWithoutPlayersInput | TeamUpdateWithWhereUniqueWithoutPlayersInput[] No
updateMany TeamUpdateManyWithWhereWithoutPlayersInput | TeamUpdateManyWithWhereWithoutPlayersInput[] No
deleteMany TeamScalarWhereInput | TeamScalarWhereInput[] No

ProfileUpdateOneWithoutPlayerInput

Name Type Nullable
create ProfileCreateWithoutPlayerInput | ProfileUncheckedCreateWithoutPlayerInput No
connectOrCreate ProfileCreateOrConnectWithoutPlayerInput No
upsert ProfileUpsertWithoutPlayerInput No
disconnect Boolean No
delete Boolean No
connect ProfileWhereUniqueInput No
update ProfileUpdateWithoutPlayerInput | ProfileUncheckedUpdateWithoutPlayerInput No

TeamMonsterKillUpdateManyWithoutKillerInput

Name Type Nullable
create TeamMonsterKillCreateWithoutKillerInput | TeamMonsterKillCreateWithoutKillerInput[] | TeamMonsterKillUncheckedCreateWithoutKillerInput | TeamMonsterKillUncheckedCreateWithoutKillerInput[] No
connectOrCreate TeamMonsterKillCreateOrConnectWithoutKillerInput | TeamMonsterKillCreateOrConnectWithoutKillerInput[] No
upsert TeamMonsterKillUpsertWithWhereUniqueWithoutKillerInput | TeamMonsterKillUpsertWithWhereUniqueWithoutKillerInput[] No
set TeamMonsterKillWhereUniqueInput | TeamMonsterKillWhereUniqueInput[] No
disconnect TeamMonsterKillWhereUniqueInput | TeamMonsterKillWhereUniqueInput[] No
delete TeamMonsterKillWhereUniqueInput | TeamMonsterKillWhereUniqueInput[] No
connect TeamMonsterKillWhereUniqueInput | TeamMonsterKillWhereUniqueInput[] No
update TeamMonsterKillUpdateWithWhereUniqueWithoutKillerInput | TeamMonsterKillUpdateWithWhereUniqueWithoutKillerInput[] No
updateMany TeamMonsterKillUpdateManyWithWhereWithoutKillerInput | TeamMonsterKillUpdateManyWithWhereWithoutKillerInput[] No
deleteMany TeamMonsterKillScalarWhereInput | TeamMonsterKillScalarWhereInput[] No

TeamBuildingKillUpdateManyWithoutKillerInput

Name Type Nullable
create TeamBuildingKillCreateWithoutKillerInput | TeamBuildingKillCreateWithoutKillerInput[] | TeamBuildingKillUncheckedCreateWithoutKillerInput | TeamBuildingKillUncheckedCreateWithoutKillerInput[] No
connectOrCreate TeamBuildingKillCreateOrConnectWithoutKillerInput | TeamBuildingKillCreateOrConnectWithoutKillerInput[] No
upsert TeamBuildingKillUpsertWithWhereUniqueWithoutKillerInput | TeamBuildingKillUpsertWithWhereUniqueWithoutKillerInput[] No
set TeamBuildingKillWhereUniqueInput | TeamBuildingKillWhereUniqueInput[] No
disconnect TeamBuildingKillWhereUniqueInput | TeamBuildingKillWhereUniqueInput[] No
delete TeamBuildingKillWhereUniqueInput | TeamBuildingKillWhereUniqueInput[] No
connect TeamBuildingKillWhereUniqueInput | TeamBuildingKillWhereUniqueInput[] No
update TeamBuildingKillUpdateWithWhereUniqueWithoutKillerInput | TeamBuildingKillUpdateWithWhereUniqueWithoutKillerInput[] No
updateMany TeamBuildingKillUpdateManyWithWhereWithoutKillerInput | TeamBuildingKillUpdateManyWithWhereWithoutKillerInput[] No
deleteMany TeamBuildingKillScalarWhereInput | TeamBuildingKillScalarWhereInput[] No

PlayerItemEventUpdateManyWithoutPlayerInput

Name Type Nullable
create PlayerItemEventCreateWithoutPlayerInput | PlayerItemEventCreateWithoutPlayerInput[] | PlayerItemEventUncheckedCreateWithoutPlayerInput | PlayerItemEventUncheckedCreateWithoutPlayerInput[] No
connectOrCreate PlayerItemEventCreateOrConnectWithoutPlayerInput | PlayerItemEventCreateOrConnectWithoutPlayerInput[] No
upsert PlayerItemEventUpsertWithWhereUniqueWithoutPlayerInput | PlayerItemEventUpsertWithWhereUniqueWithoutPlayerInput[] No
set PlayerItemEventWhereUniqueInput | PlayerItemEventWhereUniqueInput[] No
disconnect PlayerItemEventWhereUniqueInput | PlayerItemEventWhereUniqueInput[] No
delete PlayerItemEventWhereUniqueInput | PlayerItemEventWhereUniqueInput[] No
connect PlayerItemEventWhereUniqueInput | PlayerItemEventWhereUniqueInput[] No
update PlayerItemEventUpdateWithWhereUniqueWithoutPlayerInput | PlayerItemEventUpdateWithWhereUniqueWithoutPlayerInput[] No
updateMany PlayerItemEventUpdateManyWithWhereWithoutPlayerInput | PlayerItemEventUpdateManyWithWhereWithoutPlayerInput[] No
deleteMany PlayerItemEventScalarWhereInput | PlayerItemEventScalarWhereInput[] No

PlayerEndOfGameStatUpdateManyWithoutPlayerInput

Name Type Nullable
create PlayerEndOfGameStatCreateWithoutPlayerInput | PlayerEndOfGameStatCreateWithoutPlayerInput[] | PlayerEndOfGameStatUncheckedCreateWithoutPlayerInput | PlayerEndOfGameStatUncheckedCreateWithoutPlayerInput[] No
connectOrCreate PlayerEndOfGameStatCreateOrConnectWithoutPlayerInput | PlayerEndOfGameStatCreateOrConnectWithoutPlayerInput[] No
upsert PlayerEndOfGameStatUpsertWithWhereUniqueWithoutPlayerInput | PlayerEndOfGameStatUpsertWithWhereUniqueWithoutPlayerInput[] No
createMany PlayerEndOfGameStatCreateManyPlayerInputEnvelope No
set PlayerEndOfGameStatWhereUniqueInput | PlayerEndOfGameStatWhereUniqueInput[] No
disconnect PlayerEndOfGameStatWhereUniqueInput | PlayerEndOfGameStatWhereUniqueInput[] No
delete PlayerEndOfGameStatWhereUniqueInput | PlayerEndOfGameStatWhereUniqueInput[] No
connect PlayerEndOfGameStatWhereUniqueInput | PlayerEndOfGameStatWhereUniqueInput[] No
update PlayerEndOfGameStatUpdateWithWhereUniqueWithoutPlayerInput | PlayerEndOfGameStatUpdateWithWhereUniqueWithoutPlayerInput[] No
updateMany PlayerEndOfGameStatUpdateManyWithWhereWithoutPlayerInput | PlayerEndOfGameStatUpdateManyWithWhereWithoutPlayerInput[] No
deleteMany PlayerEndOfGameStatScalarWhereInput | PlayerEndOfGameStatScalarWhereInput[] No

PlayerSnapshotUpdateManyWithoutPlayerInput

Name Type Nullable
create PlayerSnapshotCreateWithoutPlayerInput | PlayerSnapshotCreateWithoutPlayerInput[] | PlayerSnapshotUncheckedCreateWithoutPlayerInput | PlayerSnapshotUncheckedCreateWithoutPlayerInput[] No
connectOrCreate PlayerSnapshotCreateOrConnectWithoutPlayerInput | PlayerSnapshotCreateOrConnectWithoutPlayerInput[] No
upsert PlayerSnapshotUpsertWithWhereUniqueWithoutPlayerInput | PlayerSnapshotUpsertWithWhereUniqueWithoutPlayerInput[] No
set PlayerSnapshotWhereUniqueInput | PlayerSnapshotWhereUniqueInput[] No
disconnect PlayerSnapshotWhereUniqueInput | PlayerSnapshotWhereUniqueInput[] No
delete PlayerSnapshotWhereUniqueInput | PlayerSnapshotWhereUniqueInput[] No
connect PlayerSnapshotWhereUniqueInput | PlayerSnapshotWhereUniqueInput[] No
update PlayerSnapshotUpdateWithWhereUniqueWithoutPlayerInput | PlayerSnapshotUpdateWithWhereUniqueWithoutPlayerInput[] No
updateMany PlayerSnapshotUpdateManyWithWhereWithoutPlayerInput | PlayerSnapshotUpdateManyWithWhereWithoutPlayerInput[] No
deleteMany PlayerSnapshotScalarWhereInput | PlayerSnapshotScalarWhereInput[] No

PlayerWardEventUpdateManyWithoutPlayerInput

Name Type Nullable
create PlayerWardEventCreateWithoutPlayerInput | PlayerWardEventCreateWithoutPlayerInput[] | PlayerWardEventUncheckedCreateWithoutPlayerInput | PlayerWardEventUncheckedCreateWithoutPlayerInput[] No
connectOrCreate PlayerWardEventCreateOrConnectWithoutPlayerInput | PlayerWardEventCreateOrConnectWithoutPlayerInput[] No
upsert PlayerWardEventUpsertWithWhereUniqueWithoutPlayerInput | PlayerWardEventUpsertWithWhereUniqueWithoutPlayerInput[] No
set PlayerWardEventWhereUniqueInput | PlayerWardEventWhereUniqueInput[] No
disconnect PlayerWardEventWhereUniqueInput | PlayerWardEventWhereUniqueInput[] No
delete PlayerWardEventWhereUniqueInput | PlayerWardEventWhereUniqueInput[] No
connect PlayerWardEventWhereUniqueInput | PlayerWardEventWhereUniqueInput[] No
update PlayerWardEventUpdateWithWhereUniqueWithoutPlayerInput | PlayerWardEventUpdateWithWhereUniqueWithoutPlayerInput[] No
updateMany PlayerWardEventUpdateManyWithWhereWithoutPlayerInput | PlayerWardEventUpdateManyWithWhereWithoutPlayerInput[] No
deleteMany PlayerWardEventScalarWhereInput | PlayerWardEventScalarWhereInput[] No

PlayerSkillLevelUpEventUpdateManyWithoutPlayerInput

Name Type Nullable
create PlayerSkillLevelUpEventCreateWithoutPlayerInput | PlayerSkillLevelUpEventCreateWithoutPlayerInput[] | PlayerSkillLevelUpEventUncheckedCreateWithoutPlayerInput | PlayerSkillLevelUpEventUncheckedCreateWithoutPlayerInput[] No
connectOrCreate PlayerSkillLevelUpEventCreateOrConnectWithoutPlayerInput | PlayerSkillLevelUpEventCreateOrConnectWithoutPlayerInput[] No
upsert PlayerSkillLevelUpEventUpsertWithWhereUniqueWithoutPlayerInput | PlayerSkillLevelUpEventUpsertWithWhereUniqueWithoutPlayerInput[] No
set PlayerSkillLevelUpEventWhereUniqueInput | PlayerSkillLevelUpEventWhereUniqueInput[] No
disconnect PlayerSkillLevelUpEventWhereUniqueInput | PlayerSkillLevelUpEventWhereUniqueInput[] No
delete PlayerSkillLevelUpEventWhereUniqueInput | PlayerSkillLevelUpEventWhereUniqueInput[] No
connect PlayerSkillLevelUpEventWhereUniqueInput | PlayerSkillLevelUpEventWhereUniqueInput[] No
update PlayerSkillLevelUpEventUpdateWithWhereUniqueWithoutPlayerInput | PlayerSkillLevelUpEventUpdateWithWhereUniqueWithoutPlayerInput[] No
updateMany PlayerSkillLevelUpEventUpdateManyWithWhereWithoutPlayerInput | PlayerSkillLevelUpEventUpdateManyWithWhereWithoutPlayerInput[] No
deleteMany PlayerSkillLevelUpEventScalarWhereInput | PlayerSkillLevelUpEventScalarWhereInput[] No

PlayerKillUncheckedUpdateManyWithoutKillerInput

Name Type Nullable
create PlayerKillCreateWithoutKillerInput | PlayerKillCreateWithoutKillerInput[] | PlayerKillUncheckedCreateWithoutKillerInput | PlayerKillUncheckedCreateWithoutKillerInput[] No
connectOrCreate PlayerKillCreateOrConnectWithoutKillerInput | PlayerKillCreateOrConnectWithoutKillerInput[] No
upsert PlayerKillUpsertWithWhereUniqueWithoutKillerInput | PlayerKillUpsertWithWhereUniqueWithoutKillerInput[] No
set PlayerKillWhereUniqueInput | PlayerKillWhereUniqueInput[] No
disconnect PlayerKillWhereUniqueInput | PlayerKillWhereUniqueInput[] No
delete PlayerKillWhereUniqueInput | PlayerKillWhereUniqueInput[] No
connect PlayerKillWhereUniqueInput | PlayerKillWhereUniqueInput[] No
update PlayerKillUpdateWithWhereUniqueWithoutKillerInput | PlayerKillUpdateWithWhereUniqueWithoutKillerInput[] No
updateMany PlayerKillUpdateManyWithWhereWithoutKillerInput | PlayerKillUpdateManyWithWhereWithoutKillerInput[] No
deleteMany PlayerKillScalarWhereInput | PlayerKillScalarWhereInput[] No

PlayerKillUncheckedUpdateManyWithoutVictimInput

Name Type Nullable
create PlayerKillCreateWithoutVictimInput | PlayerKillCreateWithoutVictimInput[] | PlayerKillUncheckedCreateWithoutVictimInput | PlayerKillUncheckedCreateWithoutVictimInput[] No
connectOrCreate PlayerKillCreateOrConnectWithoutVictimInput | PlayerKillCreateOrConnectWithoutVictimInput[] No
upsert PlayerKillUpsertWithWhereUniqueWithoutVictimInput | PlayerKillUpsertWithWhereUniqueWithoutVictimInput[] No
set PlayerKillWhereUniqueInput | PlayerKillWhereUniqueInput[] No
disconnect PlayerKillWhereUniqueInput | PlayerKillWhereUniqueInput[] No
delete PlayerKillWhereUniqueInput | PlayerKillWhereUniqueInput[] No
connect PlayerKillWhereUniqueInput | PlayerKillWhereUniqueInput[] No
update PlayerKillUpdateWithWhereUniqueWithoutVictimInput | PlayerKillUpdateWithWhereUniqueWithoutVictimInput[] No
updateMany PlayerKillUpdateManyWithWhereWithoutVictimInput | PlayerKillUpdateManyWithWhereWithoutVictimInput[] No
deleteMany PlayerKillScalarWhereInput | PlayerKillScalarWhereInput[] No

TeamUncheckedUpdateManyWithoutPlayersInput

Name Type Nullable
create TeamCreateWithoutPlayersInput | TeamCreateWithoutPlayersInput[] | TeamUncheckedCreateWithoutPlayersInput | TeamUncheckedCreateWithoutPlayersInput[] No
connectOrCreate TeamCreateOrConnectWithoutPlayersInput | TeamCreateOrConnectWithoutPlayersInput[] No
upsert TeamUpsertWithWhereUniqueWithoutPlayersInput | TeamUpsertWithWhereUniqueWithoutPlayersInput[] No
set TeamWhereUniqueInput | TeamWhereUniqueInput[] No
disconnect TeamWhereUniqueInput | TeamWhereUniqueInput[] No
delete TeamWhereUniqueInput | TeamWhereUniqueInput[] No
connect TeamWhereUniqueInput | TeamWhereUniqueInput[] No
update TeamUpdateWithWhereUniqueWithoutPlayersInput | TeamUpdateWithWhereUniqueWithoutPlayersInput[] No
updateMany TeamUpdateManyWithWhereWithoutPlayersInput | TeamUpdateManyWithWhereWithoutPlayersInput[] No
deleteMany TeamScalarWhereInput | TeamScalarWhereInput[] No

TeamMonsterKillUncheckedUpdateManyWithoutKillerInput

Name Type Nullable
create TeamMonsterKillCreateWithoutKillerInput | TeamMonsterKillCreateWithoutKillerInput[] | TeamMonsterKillUncheckedCreateWithoutKillerInput | TeamMonsterKillUncheckedCreateWithoutKillerInput[] No
connectOrCreate TeamMonsterKillCreateOrConnectWithoutKillerInput | TeamMonsterKillCreateOrConnectWithoutKillerInput[] No
upsert TeamMonsterKillUpsertWithWhereUniqueWithoutKillerInput | TeamMonsterKillUpsertWithWhereUniqueWithoutKillerInput[] No
set TeamMonsterKillWhereUniqueInput | TeamMonsterKillWhereUniqueInput[] No
disconnect TeamMonsterKillWhereUniqueInput | TeamMonsterKillWhereUniqueInput[] No
delete TeamMonsterKillWhereUniqueInput | TeamMonsterKillWhereUniqueInput[] No
connect TeamMonsterKillWhereUniqueInput | TeamMonsterKillWhereUniqueInput[] No
update TeamMonsterKillUpdateWithWhereUniqueWithoutKillerInput | TeamMonsterKillUpdateWithWhereUniqueWithoutKillerInput[] No
updateMany TeamMonsterKillUpdateManyWithWhereWithoutKillerInput | TeamMonsterKillUpdateManyWithWhereWithoutKillerInput[] No
deleteMany TeamMonsterKillScalarWhereInput | TeamMonsterKillScalarWhereInput[] No

TeamBuildingKillUncheckedUpdateManyWithoutKillerInput

Name Type Nullable
create TeamBuildingKillCreateWithoutKillerInput | TeamBuildingKillCreateWithoutKillerInput[] | TeamBuildingKillUncheckedCreateWithoutKillerInput | TeamBuildingKillUncheckedCreateWithoutKillerInput[] No
connectOrCreate TeamBuildingKillCreateOrConnectWithoutKillerInput | TeamBuildingKillCreateOrConnectWithoutKillerInput[] No
upsert TeamBuildingKillUpsertWithWhereUniqueWithoutKillerInput | TeamBuildingKillUpsertWithWhereUniqueWithoutKillerInput[] No
set TeamBuildingKillWhereUniqueInput | TeamBuildingKillWhereUniqueInput[] No
disconnect TeamBuildingKillWhereUniqueInput | TeamBuildingKillWhereUniqueInput[] No
delete TeamBuildingKillWhereUniqueInput | TeamBuildingKillWhereUniqueInput[] No
connect TeamBuildingKillWhereUniqueInput | TeamBuildingKillWhereUniqueInput[] No
update TeamBuildingKillUpdateWithWhereUniqueWithoutKillerInput | TeamBuildingKillUpdateWithWhereUniqueWithoutKillerInput[] No
updateMany TeamBuildingKillUpdateManyWithWhereWithoutKillerInput | TeamBuildingKillUpdateManyWithWhereWithoutKillerInput[] No
deleteMany TeamBuildingKillScalarWhereInput | TeamBuildingKillScalarWhereInput[] No

PlayerItemEventUncheckedUpdateManyWithoutPlayerInput

Name Type Nullable
create PlayerItemEventCreateWithoutPlayerInput | PlayerItemEventCreateWithoutPlayerInput[] | PlayerItemEventUncheckedCreateWithoutPlayerInput | PlayerItemEventUncheckedCreateWithoutPlayerInput[] No
connectOrCreate PlayerItemEventCreateOrConnectWithoutPlayerInput | PlayerItemEventCreateOrConnectWithoutPlayerInput[] No
upsert PlayerItemEventUpsertWithWhereUniqueWithoutPlayerInput | PlayerItemEventUpsertWithWhereUniqueWithoutPlayerInput[] No
set PlayerItemEventWhereUniqueInput | PlayerItemEventWhereUniqueInput[] No
disconnect PlayerItemEventWhereUniqueInput | PlayerItemEventWhereUniqueInput[] No
delete PlayerItemEventWhereUniqueInput | PlayerItemEventWhereUniqueInput[] No
connect PlayerItemEventWhereUniqueInput | PlayerItemEventWhereUniqueInput[] No
update PlayerItemEventUpdateWithWhereUniqueWithoutPlayerInput | PlayerItemEventUpdateWithWhereUniqueWithoutPlayerInput[] No
updateMany PlayerItemEventUpdateManyWithWhereWithoutPlayerInput | PlayerItemEventUpdateManyWithWhereWithoutPlayerInput[] No
deleteMany PlayerItemEventScalarWhereInput | PlayerItemEventScalarWhereInput[] No

PlayerEndOfGameStatUncheckedUpdateManyWithoutPlayerInput

Name Type Nullable
create PlayerEndOfGameStatCreateWithoutPlayerInput | PlayerEndOfGameStatCreateWithoutPlayerInput[] | PlayerEndOfGameStatUncheckedCreateWithoutPlayerInput | PlayerEndOfGameStatUncheckedCreateWithoutPlayerInput[] No
connectOrCreate PlayerEndOfGameStatCreateOrConnectWithoutPlayerInput | PlayerEndOfGameStatCreateOrConnectWithoutPlayerInput[] No
upsert PlayerEndOfGameStatUpsertWithWhereUniqueWithoutPlayerInput | PlayerEndOfGameStatUpsertWithWhereUniqueWithoutPlayerInput[] No
createMany PlayerEndOfGameStatCreateManyPlayerInputEnvelope No
set PlayerEndOfGameStatWhereUniqueInput | PlayerEndOfGameStatWhereUniqueInput[] No
disconnect PlayerEndOfGameStatWhereUniqueInput | PlayerEndOfGameStatWhereUniqueInput[] No
delete PlayerEndOfGameStatWhereUniqueInput | PlayerEndOfGameStatWhereUniqueInput[] No
connect PlayerEndOfGameStatWhereUniqueInput | PlayerEndOfGameStatWhereUniqueInput[] No
update PlayerEndOfGameStatUpdateWithWhereUniqueWithoutPlayerInput | PlayerEndOfGameStatUpdateWithWhereUniqueWithoutPlayerInput[] No
updateMany PlayerEndOfGameStatUpdateManyWithWhereWithoutPlayerInput | PlayerEndOfGameStatUpdateManyWithWhereWithoutPlayerInput[] No
deleteMany PlayerEndOfGameStatScalarWhereInput | PlayerEndOfGameStatScalarWhereInput[] No

PlayerSnapshotUncheckedUpdateManyWithoutPlayerInput

Name Type Nullable
create PlayerSnapshotCreateWithoutPlayerInput | PlayerSnapshotCreateWithoutPlayerInput[] | PlayerSnapshotUncheckedCreateWithoutPlayerInput | PlayerSnapshotUncheckedCreateWithoutPlayerInput[] No
connectOrCreate PlayerSnapshotCreateOrConnectWithoutPlayerInput | PlayerSnapshotCreateOrConnectWithoutPlayerInput[] No
upsert PlayerSnapshotUpsertWithWhereUniqueWithoutPlayerInput | PlayerSnapshotUpsertWithWhereUniqueWithoutPlayerInput[] No
set PlayerSnapshotWhereUniqueInput | PlayerSnapshotWhereUniqueInput[] No
disconnect PlayerSnapshotWhereUniqueInput | PlayerSnapshotWhereUniqueInput[] No
delete PlayerSnapshotWhereUniqueInput | PlayerSnapshotWhereUniqueInput[] No
connect PlayerSnapshotWhereUniqueInput | PlayerSnapshotWhereUniqueInput[] No
update PlayerSnapshotUpdateWithWhereUniqueWithoutPlayerInput | PlayerSnapshotUpdateWithWhereUniqueWithoutPlayerInput[] No
updateMany PlayerSnapshotUpdateManyWithWhereWithoutPlayerInput | PlayerSnapshotUpdateManyWithWhereWithoutPlayerInput[] No
deleteMany PlayerSnapshotScalarWhereInput | PlayerSnapshotScalarWhereInput[] No

PlayerWardEventUncheckedUpdateManyWithoutPlayerInput

Name Type Nullable
create PlayerWardEventCreateWithoutPlayerInput | PlayerWardEventCreateWithoutPlayerInput[] | PlayerWardEventUncheckedCreateWithoutPlayerInput | PlayerWardEventUncheckedCreateWithoutPlayerInput[] No
connectOrCreate PlayerWardEventCreateOrConnectWithoutPlayerInput | PlayerWardEventCreateOrConnectWithoutPlayerInput[] No
upsert PlayerWardEventUpsertWithWhereUniqueWithoutPlayerInput | PlayerWardEventUpsertWithWhereUniqueWithoutPlayerInput[] No
set PlayerWardEventWhereUniqueInput | PlayerWardEventWhereUniqueInput[] No
disconnect PlayerWardEventWhereUniqueInput | PlayerWardEventWhereUniqueInput[] No
delete PlayerWardEventWhereUniqueInput | PlayerWardEventWhereUniqueInput[] No
connect PlayerWardEventWhereUniqueInput | PlayerWardEventWhereUniqueInput[] No
update PlayerWardEventUpdateWithWhereUniqueWithoutPlayerInput | PlayerWardEventUpdateWithWhereUniqueWithoutPlayerInput[] No
updateMany PlayerWardEventUpdateManyWithWhereWithoutPlayerInput | PlayerWardEventUpdateManyWithWhereWithoutPlayerInput[] No
deleteMany PlayerWardEventScalarWhereInput | PlayerWardEventScalarWhereInput[] No

PlayerSkillLevelUpEventUncheckedUpdateManyWithoutPlayerInput

Name Type Nullable
create PlayerSkillLevelUpEventCreateWithoutPlayerInput | PlayerSkillLevelUpEventCreateWithoutPlayerInput[] | PlayerSkillLevelUpEventUncheckedCreateWithoutPlayerInput | PlayerSkillLevelUpEventUncheckedCreateWithoutPlayerInput[] No
connectOrCreate PlayerSkillLevelUpEventCreateOrConnectWithoutPlayerInput | PlayerSkillLevelUpEventCreateOrConnectWithoutPlayerInput[] No
upsert PlayerSkillLevelUpEventUpsertWithWhereUniqueWithoutPlayerInput | PlayerSkillLevelUpEventUpsertWithWhereUniqueWithoutPlayerInput[] No
set PlayerSkillLevelUpEventWhereUniqueInput | PlayerSkillLevelUpEventWhereUniqueInput[] No
disconnect PlayerSkillLevelUpEventWhereUniqueInput | PlayerSkillLevelUpEventWhereUniqueInput[] No
delete PlayerSkillLevelUpEventWhereUniqueInput | PlayerSkillLevelUpEventWhereUniqueInput[] No
connect PlayerSkillLevelUpEventWhereUniqueInput | PlayerSkillLevelUpEventWhereUniqueInput[] No
update PlayerSkillLevelUpEventUpdateWithWhereUniqueWithoutPlayerInput | PlayerSkillLevelUpEventUpdateWithWhereUniqueWithoutPlayerInput[] No
updateMany PlayerSkillLevelUpEventUpdateManyWithWhereWithoutPlayerInput | PlayerSkillLevelUpEventUpdateManyWithWhereWithoutPlayerInput[] No
deleteMany PlayerSkillLevelUpEventScalarWhereInput | PlayerSkillLevelUpEventScalarWhereInput[] No

PlayerCreateNestedOneWithoutEndOfGameStatsInput

Name Type Nullable
create PlayerCreateWithoutEndOfGameStatsInput | PlayerUncheckedCreateWithoutEndOfGameStatsInput No
connectOrCreate PlayerCreateOrConnectWithoutEndOfGameStatsInput No
connect PlayerWhereUniqueInput No










PlayerEndOfGameStatUpdateManyWithoutItemsInput

Name Type Nullable
create PlayerEndOfGameStatCreateWithoutItemsInput | PlayerEndOfGameStatCreateWithoutItemsInput[] | PlayerEndOfGameStatUncheckedCreateWithoutItemsInput | PlayerEndOfGameStatUncheckedCreateWithoutItemsInput[] No
connectOrCreate PlayerEndOfGameStatCreateOrConnectWithoutItemsInput | PlayerEndOfGameStatCreateOrConnectWithoutItemsInput[] No
upsert PlayerEndOfGameStatUpsertWithWhereUniqueWithoutItemsInput | PlayerEndOfGameStatUpsertWithWhereUniqueWithoutItemsInput[] No
createMany PlayerEndOfGameStatCreateManyItemsInputEnvelope No
set PlayerEndOfGameStatWhereUniqueInput | PlayerEndOfGameStatWhereUniqueInput[] No
disconnect PlayerEndOfGameStatWhereUniqueInput | PlayerEndOfGameStatWhereUniqueInput[] No
delete PlayerEndOfGameStatWhereUniqueInput | PlayerEndOfGameStatWhereUniqueInput[] No
connect PlayerEndOfGameStatWhereUniqueInput | PlayerEndOfGameStatWhereUniqueInput[] No
update PlayerEndOfGameStatUpdateWithWhereUniqueWithoutItemsInput | PlayerEndOfGameStatUpdateWithWhereUniqueWithoutItemsInput[] No
updateMany PlayerEndOfGameStatUpdateManyWithWhereWithoutItemsInput | PlayerEndOfGameStatUpdateManyWithWhereWithoutItemsInput[] No
deleteMany PlayerEndOfGameStatScalarWhereInput | PlayerEndOfGameStatScalarWhereInput[] No

PlayerEndOfGameStatUncheckedUpdateManyWithoutItemsInput

Name Type Nullable
create PlayerEndOfGameStatCreateWithoutItemsInput | PlayerEndOfGameStatCreateWithoutItemsInput[] | PlayerEndOfGameStatUncheckedCreateWithoutItemsInput | PlayerEndOfGameStatUncheckedCreateWithoutItemsInput[] No
connectOrCreate PlayerEndOfGameStatCreateOrConnectWithoutItemsInput | PlayerEndOfGameStatCreateOrConnectWithoutItemsInput[] No
upsert PlayerEndOfGameStatUpsertWithWhereUniqueWithoutItemsInput | PlayerEndOfGameStatUpsertWithWhereUniqueWithoutItemsInput[] No
createMany PlayerEndOfGameStatCreateManyItemsInputEnvelope No
set PlayerEndOfGameStatWhereUniqueInput | PlayerEndOfGameStatWhereUniqueInput[] No
disconnect PlayerEndOfGameStatWhereUniqueInput | PlayerEndOfGameStatWhereUniqueInput[] No
delete PlayerEndOfGameStatWhereUniqueInput | PlayerEndOfGameStatWhereUniqueInput[] No
connect PlayerEndOfGameStatWhereUniqueInput | PlayerEndOfGameStatWhereUniqueInput[] No
update PlayerEndOfGameStatUpdateWithWhereUniqueWithoutItemsInput | PlayerEndOfGameStatUpdateWithWhereUniqueWithoutItemsInput[] No
updateMany PlayerEndOfGameStatUpdateManyWithWhereWithoutItemsInput | PlayerEndOfGameStatUpdateManyWithWhereWithoutItemsInput[] No
deleteMany PlayerEndOfGameStatScalarWhereInput | PlayerEndOfGameStatScalarWhereInput[] No



PlayerUpdateManyWithoutItemEventInput

Name Type Nullable
create PlayerCreateWithoutItemEventInput | PlayerCreateWithoutItemEventInput[] | PlayerUncheckedCreateWithoutItemEventInput | PlayerUncheckedCreateWithoutItemEventInput[] No
connectOrCreate PlayerCreateOrConnectWithoutItemEventInput | PlayerCreateOrConnectWithoutItemEventInput[] No
upsert PlayerUpsertWithWhereUniqueWithoutItemEventInput | PlayerUpsertWithWhereUniqueWithoutItemEventInput[] No
set PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
disconnect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
delete PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
connect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
update PlayerUpdateWithWhereUniqueWithoutItemEventInput | PlayerUpdateWithWhereUniqueWithoutItemEventInput[] No
updateMany PlayerUpdateManyWithWhereWithoutItemEventInput | PlayerUpdateManyWithWhereWithoutItemEventInput[] No
deleteMany PlayerScalarWhereInput | PlayerScalarWhereInput[] No

PlayerUncheckedUpdateManyWithoutItemEventInput

Name Type Nullable
create PlayerCreateWithoutItemEventInput | PlayerCreateWithoutItemEventInput[] | PlayerUncheckedCreateWithoutItemEventInput | PlayerUncheckedCreateWithoutItemEventInput[] No
connectOrCreate PlayerCreateOrConnectWithoutItemEventInput | PlayerCreateOrConnectWithoutItemEventInput[] No
upsert PlayerUpsertWithWhereUniqueWithoutItemEventInput | PlayerUpsertWithWhereUniqueWithoutItemEventInput[] No
set PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
disconnect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
delete PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
connect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
update PlayerUpdateWithWhereUniqueWithoutItemEventInput | PlayerUpdateWithWhereUniqueWithoutItemEventInput[] No
updateMany PlayerUpdateManyWithWhereWithoutItemEventInput | PlayerUpdateManyWithWhereWithoutItemEventInput[] No
deleteMany PlayerScalarWhereInput | PlayerScalarWhereInput[] No





PlayerUpdateManyWithoutKillsInput

Name Type Nullable
create PlayerCreateWithoutKillsInput | PlayerCreateWithoutKillsInput[] | PlayerUncheckedCreateWithoutKillsInput | PlayerUncheckedCreateWithoutKillsInput[] No
connectOrCreate PlayerCreateOrConnectWithoutKillsInput | PlayerCreateOrConnectWithoutKillsInput[] No
upsert PlayerUpsertWithWhereUniqueWithoutKillsInput | PlayerUpsertWithWhereUniqueWithoutKillsInput[] No
set PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
disconnect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
delete PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
connect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
update PlayerUpdateWithWhereUniqueWithoutKillsInput | PlayerUpdateWithWhereUniqueWithoutKillsInput[] No
updateMany PlayerUpdateManyWithWhereWithoutKillsInput | PlayerUpdateManyWithWhereWithoutKillsInput[] No
deleteMany PlayerScalarWhereInput | PlayerScalarWhereInput[] No

PlayerUpdateManyWithoutDeathsInput

Name Type Nullable
create PlayerCreateWithoutDeathsInput | PlayerCreateWithoutDeathsInput[] | PlayerUncheckedCreateWithoutDeathsInput | PlayerUncheckedCreateWithoutDeathsInput[] No
connectOrCreate PlayerCreateOrConnectWithoutDeathsInput | PlayerCreateOrConnectWithoutDeathsInput[] No
upsert PlayerUpsertWithWhereUniqueWithoutDeathsInput | PlayerUpsertWithWhereUniqueWithoutDeathsInput[] No
set PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
disconnect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
delete PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
connect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
update PlayerUpdateWithWhereUniqueWithoutDeathsInput | PlayerUpdateWithWhereUniqueWithoutDeathsInput[] No
updateMany PlayerUpdateManyWithWhereWithoutDeathsInput | PlayerUpdateManyWithWhereWithoutDeathsInput[] No
deleteMany PlayerScalarWhereInput | PlayerScalarWhereInput[] No

PlayerUncheckedUpdateManyWithoutKillsInput

Name Type Nullable
create PlayerCreateWithoutKillsInput | PlayerCreateWithoutKillsInput[] | PlayerUncheckedCreateWithoutKillsInput | PlayerUncheckedCreateWithoutKillsInput[] No
connectOrCreate PlayerCreateOrConnectWithoutKillsInput | PlayerCreateOrConnectWithoutKillsInput[] No
upsert PlayerUpsertWithWhereUniqueWithoutKillsInput | PlayerUpsertWithWhereUniqueWithoutKillsInput[] No
set PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
disconnect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
delete PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
connect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
update PlayerUpdateWithWhereUniqueWithoutKillsInput | PlayerUpdateWithWhereUniqueWithoutKillsInput[] No
updateMany PlayerUpdateManyWithWhereWithoutKillsInput | PlayerUpdateManyWithWhereWithoutKillsInput[] No
deleteMany PlayerScalarWhereInput | PlayerScalarWhereInput[] No

PlayerUncheckedUpdateManyWithoutDeathsInput

Name Type Nullable
create PlayerCreateWithoutDeathsInput | PlayerCreateWithoutDeathsInput[] | PlayerUncheckedCreateWithoutDeathsInput | PlayerUncheckedCreateWithoutDeathsInput[] No
connectOrCreate PlayerCreateOrConnectWithoutDeathsInput | PlayerCreateOrConnectWithoutDeathsInput[] No
upsert PlayerUpsertWithWhereUniqueWithoutDeathsInput | PlayerUpsertWithWhereUniqueWithoutDeathsInput[] No
set PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
disconnect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
delete PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
connect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
update PlayerUpdateWithWhereUniqueWithoutDeathsInput | PlayerUpdateWithWhereUniqueWithoutDeathsInput[] No
updateMany PlayerUpdateManyWithWhereWithoutDeathsInput | PlayerUpdateManyWithWhereWithoutDeathsInput[] No
deleteMany PlayerScalarWhereInput | PlayerScalarWhereInput[] No



PlayerEndOfGameStatUncheckedCreateNestedOneWithoutPerksInput

Name Type Nullable
create PlayerEndOfGameStatCreateWithoutPerksInput | PlayerEndOfGameStatUncheckedCreateWithoutPerksInput No
connectOrCreate PlayerEndOfGameStatCreateOrConnectWithoutPerksInput No
connect PlayerEndOfGameStatWhereUniqueInput No



RuneStyleUpdateManyWithoutPlayerRunesInput

Name Type Nullable
create RuneStyleCreateWithoutPlayerRunesInput | RuneStyleCreateWithoutPlayerRunesInput[] | RuneStyleUncheckedCreateWithoutPlayerRunesInput | RuneStyleUncheckedCreateWithoutPlayerRunesInput[] No
connectOrCreate RuneStyleCreateOrConnectWithoutPlayerRunesInput | RuneStyleCreateOrConnectWithoutPlayerRunesInput[] No
upsert RuneStyleUpsertWithWhereUniqueWithoutPlayerRunesInput | RuneStyleUpsertWithWhereUniqueWithoutPlayerRunesInput[] No
createMany RuneStyleCreateManyPlayerRunesInputEnvelope No
set RuneStyleWhereUniqueInput | RuneStyleWhereUniqueInput[] No
disconnect RuneStyleWhereUniqueInput | RuneStyleWhereUniqueInput[] No
delete RuneStyleWhereUniqueInput | RuneStyleWhereUniqueInput[] No
connect RuneStyleWhereUniqueInput | RuneStyleWhereUniqueInput[] No
update RuneStyleUpdateWithWhereUniqueWithoutPlayerRunesInput | RuneStyleUpdateWithWhereUniqueWithoutPlayerRunesInput[] No
updateMany RuneStyleUpdateManyWithWhereWithoutPlayerRunesInput | RuneStyleUpdateManyWithWhereWithoutPlayerRunesInput[] No
deleteMany RuneStyleScalarWhereInput | RuneStyleScalarWhereInput[] No


RuneStyleUncheckedUpdateManyWithoutPlayerRunesInput

Name Type Nullable
create RuneStyleCreateWithoutPlayerRunesInput | RuneStyleCreateWithoutPlayerRunesInput[] | RuneStyleUncheckedCreateWithoutPlayerRunesInput | RuneStyleUncheckedCreateWithoutPlayerRunesInput[] No
connectOrCreate RuneStyleCreateOrConnectWithoutPlayerRunesInput | RuneStyleCreateOrConnectWithoutPlayerRunesInput[] No
upsert RuneStyleUpsertWithWhereUniqueWithoutPlayerRunesInput | RuneStyleUpsertWithWhereUniqueWithoutPlayerRunesInput[] No
createMany RuneStyleCreateManyPlayerRunesInputEnvelope No
set RuneStyleWhereUniqueInput | RuneStyleWhereUniqueInput[] No
disconnect RuneStyleWhereUniqueInput | RuneStyleWhereUniqueInput[] No
delete RuneStyleWhereUniqueInput | RuneStyleWhereUniqueInput[] No
connect RuneStyleWhereUniqueInput | RuneStyleWhereUniqueInput[] No
update RuneStyleUpdateWithWhereUniqueWithoutPlayerRunesInput | RuneStyleUpdateWithWhereUniqueWithoutPlayerRunesInput[] No
updateMany RuneStyleUpdateManyWithWhereWithoutPlayerRunesInput | RuneStyleUpdateManyWithWhereWithoutPlayerRunesInput[] No
deleteMany RuneStyleScalarWhereInput | RuneStyleScalarWhereInput[] No



PlayerUpdateManyWithoutSkillLevelUpEventsInput

Name Type Nullable
create PlayerCreateWithoutSkillLevelUpEventsInput | PlayerCreateWithoutSkillLevelUpEventsInput[] | PlayerUncheckedCreateWithoutSkillLevelUpEventsInput | PlayerUncheckedCreateWithoutSkillLevelUpEventsInput[] No
connectOrCreate PlayerCreateOrConnectWithoutSkillLevelUpEventsInput | PlayerCreateOrConnectWithoutSkillLevelUpEventsInput[] No
upsert PlayerUpsertWithWhereUniqueWithoutSkillLevelUpEventsInput | PlayerUpsertWithWhereUniqueWithoutSkillLevelUpEventsInput[] No
set PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
disconnect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
delete PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
connect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
update PlayerUpdateWithWhereUniqueWithoutSkillLevelUpEventsInput | PlayerUpdateWithWhereUniqueWithoutSkillLevelUpEventsInput[] No
updateMany PlayerUpdateManyWithWhereWithoutSkillLevelUpEventsInput | PlayerUpdateManyWithWhereWithoutSkillLevelUpEventsInput[] No
deleteMany PlayerScalarWhereInput | PlayerScalarWhereInput[] No

PlayerUncheckedUpdateManyWithoutSkillLevelUpEventsInput

Name Type Nullable
create PlayerCreateWithoutSkillLevelUpEventsInput | PlayerCreateWithoutSkillLevelUpEventsInput[] | PlayerUncheckedCreateWithoutSkillLevelUpEventsInput | PlayerUncheckedCreateWithoutSkillLevelUpEventsInput[] No
connectOrCreate PlayerCreateOrConnectWithoutSkillLevelUpEventsInput | PlayerCreateOrConnectWithoutSkillLevelUpEventsInput[] No
upsert PlayerUpsertWithWhereUniqueWithoutSkillLevelUpEventsInput | PlayerUpsertWithWhereUniqueWithoutSkillLevelUpEventsInput[] No
set PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
disconnect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
delete PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
connect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
update PlayerUpdateWithWhereUniqueWithoutSkillLevelUpEventsInput | PlayerUpdateWithWhereUniqueWithoutSkillLevelUpEventsInput[] No
updateMany PlayerUpdateManyWithWhereWithoutSkillLevelUpEventsInput | PlayerUpdateManyWithWhereWithoutSkillLevelUpEventsInput[] No
deleteMany PlayerScalarWhereInput | PlayerScalarWhereInput[] No





NullableFloatFieldUpdateOperationsInput

Name Type Nullable
set Float | Null Yes
increment Float No
decrement Float No
multiply Float No
divide Float No

PositionUpdateManyWithoutPlayerSnapshotInput

Name Type Nullable
create PositionCreateWithoutPlayerSnapshotInput | PositionCreateWithoutPlayerSnapshotInput[] | PositionUncheckedCreateWithoutPlayerSnapshotInput | PositionUncheckedCreateWithoutPlayerSnapshotInput[] No
connectOrCreate PositionCreateOrConnectWithoutPlayerSnapshotInput | PositionCreateOrConnectWithoutPlayerSnapshotInput[] No
upsert PositionUpsertWithWhereUniqueWithoutPlayerSnapshotInput | PositionUpsertWithWhereUniqueWithoutPlayerSnapshotInput[] No
set PositionWhereUniqueInput | PositionWhereUniqueInput[] No
disconnect PositionWhereUniqueInput | PositionWhereUniqueInput[] No
delete PositionWhereUniqueInput | PositionWhereUniqueInput[] No
connect PositionWhereUniqueInput | PositionWhereUniqueInput[] No
update PositionUpdateWithWhereUniqueWithoutPlayerSnapshotInput | PositionUpdateWithWhereUniqueWithoutPlayerSnapshotInput[] No
updateMany PositionUpdateManyWithWhereWithoutPlayerSnapshotInput | PositionUpdateManyWithWhereWithoutPlayerSnapshotInput[] No
deleteMany PositionScalarWhereInput | PositionScalarWhereInput[] No

PlayerUpdateManyWithoutSnapshotsInput

Name Type Nullable
create PlayerCreateWithoutSnapshotsInput | PlayerCreateWithoutSnapshotsInput[] | PlayerUncheckedCreateWithoutSnapshotsInput | PlayerUncheckedCreateWithoutSnapshotsInput[] No
connectOrCreate PlayerCreateOrConnectWithoutSnapshotsInput | PlayerCreateOrConnectWithoutSnapshotsInput[] No
upsert PlayerUpsertWithWhereUniqueWithoutSnapshotsInput | PlayerUpsertWithWhereUniqueWithoutSnapshotsInput[] No
set PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
disconnect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
delete PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
connect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
update PlayerUpdateWithWhereUniqueWithoutSnapshotsInput | PlayerUpdateWithWhereUniqueWithoutSnapshotsInput[] No
updateMany PlayerUpdateManyWithWhereWithoutSnapshotsInput | PlayerUpdateManyWithWhereWithoutSnapshotsInput[] No
deleteMany PlayerScalarWhereInput | PlayerScalarWhereInput[] No

PositionUncheckedUpdateManyWithoutPlayerSnapshotInput

Name Type Nullable
create PositionCreateWithoutPlayerSnapshotInput | PositionCreateWithoutPlayerSnapshotInput[] | PositionUncheckedCreateWithoutPlayerSnapshotInput | PositionUncheckedCreateWithoutPlayerSnapshotInput[] No
connectOrCreate PositionCreateOrConnectWithoutPlayerSnapshotInput | PositionCreateOrConnectWithoutPlayerSnapshotInput[] No
upsert PositionUpsertWithWhereUniqueWithoutPlayerSnapshotInput | PositionUpsertWithWhereUniqueWithoutPlayerSnapshotInput[] No
set PositionWhereUniqueInput | PositionWhereUniqueInput[] No
disconnect PositionWhereUniqueInput | PositionWhereUniqueInput[] No
delete PositionWhereUniqueInput | PositionWhereUniqueInput[] No
connect PositionWhereUniqueInput | PositionWhereUniqueInput[] No
update PositionUpdateWithWhereUniqueWithoutPlayerSnapshotInput | PositionUpdateWithWhereUniqueWithoutPlayerSnapshotInput[] No
updateMany PositionUpdateManyWithWhereWithoutPlayerSnapshotInput | PositionUpdateManyWithWhereWithoutPlayerSnapshotInput[] No
deleteMany PositionScalarWhereInput | PositionScalarWhereInput[] No

PlayerUncheckedUpdateManyWithoutSnapshotsInput

Name Type Nullable
create PlayerCreateWithoutSnapshotsInput | PlayerCreateWithoutSnapshotsInput[] | PlayerUncheckedCreateWithoutSnapshotsInput | PlayerUncheckedCreateWithoutSnapshotsInput[] No
connectOrCreate PlayerCreateOrConnectWithoutSnapshotsInput | PlayerCreateOrConnectWithoutSnapshotsInput[] No
upsert PlayerUpsertWithWhereUniqueWithoutSnapshotsInput | PlayerUpsertWithWhereUniqueWithoutSnapshotsInput[] No
set PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
disconnect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
delete PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
connect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
update PlayerUpdateWithWhereUniqueWithoutSnapshotsInput | PlayerUpdateWithWhereUniqueWithoutSnapshotsInput[] No
updateMany PlayerUpdateManyWithWhereWithoutSnapshotsInput | PlayerUpdateManyWithWhereWithoutSnapshotsInput[] No
deleteMany PlayerScalarWhereInput | PlayerScalarWhereInput[] No



PlayerUpdateManyWithoutWardEventsInput

Name Type Nullable
create PlayerCreateWithoutWardEventsInput | PlayerCreateWithoutWardEventsInput[] | PlayerUncheckedCreateWithoutWardEventsInput | PlayerUncheckedCreateWithoutWardEventsInput[] No
connectOrCreate PlayerCreateOrConnectWithoutWardEventsInput | PlayerCreateOrConnectWithoutWardEventsInput[] No
upsert PlayerUpsertWithWhereUniqueWithoutWardEventsInput | PlayerUpsertWithWhereUniqueWithoutWardEventsInput[] No
set PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
disconnect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
delete PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
connect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
update PlayerUpdateWithWhereUniqueWithoutWardEventsInput | PlayerUpdateWithWhereUniqueWithoutWardEventsInput[] No
updateMany PlayerUpdateManyWithWhereWithoutWardEventsInput | PlayerUpdateManyWithWhereWithoutWardEventsInput[] No
deleteMany PlayerScalarWhereInput | PlayerScalarWhereInput[] No

NullableEnumPlayerWardEventWardTypeTypeFieldUpdateOperationsInput

Name Type Nullable
set PlayerWardEventWardTypeType | Null Yes

PlayerUncheckedUpdateManyWithoutWardEventsInput

Name Type Nullable
create PlayerCreateWithoutWardEventsInput | PlayerCreateWithoutWardEventsInput[] | PlayerUncheckedCreateWithoutWardEventsInput | PlayerUncheckedCreateWithoutWardEventsInput[] No
connectOrCreate PlayerCreateOrConnectWithoutWardEventsInput | PlayerCreateOrConnectWithoutWardEventsInput[] No
upsert PlayerUpsertWithWhereUniqueWithoutWardEventsInput | PlayerUpsertWithWhereUniqueWithoutWardEventsInput[] No
set PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
disconnect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
delete PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
connect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
update PlayerUpdateWithWhereUniqueWithoutWardEventsInput | PlayerUpdateWithWhereUniqueWithoutWardEventsInput[] No
updateMany PlayerUpdateManyWithWhereWithoutWardEventsInput | PlayerUpdateManyWithWhereWithoutWardEventsInput[] No
deleteMany PlayerScalarWhereInput | PlayerScalarWhereInput[] No





EventUpdateManyWithoutPositionInput

Name Type Nullable
create EventCreateWithoutPositionInput | EventCreateWithoutPositionInput[] | EventUncheckedCreateWithoutPositionInput | EventUncheckedCreateWithoutPositionInput[] No
connectOrCreate EventCreateOrConnectWithoutPositionInput | EventCreateOrConnectWithoutPositionInput[] No
upsert EventUpsertWithWhereUniqueWithoutPositionInput | EventUpsertWithWhereUniqueWithoutPositionInput[] No
set EventWhereUniqueInput | EventWhereUniqueInput[] No
disconnect EventWhereUniqueInput | EventWhereUniqueInput[] No
delete EventWhereUniqueInput | EventWhereUniqueInput[] No
connect EventWhereUniqueInput | EventWhereUniqueInput[] No
update EventUpdateWithWhereUniqueWithoutPositionInput | EventUpdateWithWhereUniqueWithoutPositionInput[] No
updateMany EventUpdateManyWithWhereWithoutPositionInput | EventUpdateManyWithWhereWithoutPositionInput[] No
deleteMany EventScalarWhereInput | EventScalarWhereInput[] No

PlayerSnapshotUpdateManyWithoutPositionInput

Name Type Nullable
create PlayerSnapshotCreateWithoutPositionInput | PlayerSnapshotCreateWithoutPositionInput[] | PlayerSnapshotUncheckedCreateWithoutPositionInput | PlayerSnapshotUncheckedCreateWithoutPositionInput[] No
connectOrCreate PlayerSnapshotCreateOrConnectWithoutPositionInput | PlayerSnapshotCreateOrConnectWithoutPositionInput[] No
upsert PlayerSnapshotUpsertWithWhereUniqueWithoutPositionInput | PlayerSnapshotUpsertWithWhereUniqueWithoutPositionInput[] No
set PlayerSnapshotWhereUniqueInput | PlayerSnapshotWhereUniqueInput[] No
disconnect PlayerSnapshotWhereUniqueInput | PlayerSnapshotWhereUniqueInput[] No
delete PlayerSnapshotWhereUniqueInput | PlayerSnapshotWhereUniqueInput[] No
connect PlayerSnapshotWhereUniqueInput | PlayerSnapshotWhereUniqueInput[] No
update PlayerSnapshotUpdateWithWhereUniqueWithoutPositionInput | PlayerSnapshotUpdateWithWhereUniqueWithoutPositionInput[] No
updateMany PlayerSnapshotUpdateManyWithWhereWithoutPositionInput | PlayerSnapshotUpdateManyWithWhereWithoutPositionInput[] No
deleteMany PlayerSnapshotScalarWhereInput | PlayerSnapshotScalarWhereInput[] No

EventUncheckedUpdateManyWithoutPositionInput

Name Type Nullable
create EventCreateWithoutPositionInput | EventCreateWithoutPositionInput[] | EventUncheckedCreateWithoutPositionInput | EventUncheckedCreateWithoutPositionInput[] No
connectOrCreate EventCreateOrConnectWithoutPositionInput | EventCreateOrConnectWithoutPositionInput[] No
upsert EventUpsertWithWhereUniqueWithoutPositionInput | EventUpsertWithWhereUniqueWithoutPositionInput[] No
set EventWhereUniqueInput | EventWhereUniqueInput[] No
disconnect EventWhereUniqueInput | EventWhereUniqueInput[] No
delete EventWhereUniqueInput | EventWhereUniqueInput[] No
connect EventWhereUniqueInput | EventWhereUniqueInput[] No
update EventUpdateWithWhereUniqueWithoutPositionInput | EventUpdateWithWhereUniqueWithoutPositionInput[] No
updateMany EventUpdateManyWithWhereWithoutPositionInput | EventUpdateManyWithWhereWithoutPositionInput[] No
deleteMany EventScalarWhereInput | EventScalarWhereInput[] No

PlayerSnapshotUncheckedUpdateManyWithoutPositionInput

Name Type Nullable
create PlayerSnapshotCreateWithoutPositionInput | PlayerSnapshotCreateWithoutPositionInput[] | PlayerSnapshotUncheckedCreateWithoutPositionInput | PlayerSnapshotUncheckedCreateWithoutPositionInput[] No
connectOrCreate PlayerSnapshotCreateOrConnectWithoutPositionInput | PlayerSnapshotCreateOrConnectWithoutPositionInput[] No
upsert PlayerSnapshotUpsertWithWhereUniqueWithoutPositionInput | PlayerSnapshotUpsertWithWhereUniqueWithoutPositionInput[] No
set PlayerSnapshotWhereUniqueInput | PlayerSnapshotWhereUniqueInput[] No
disconnect PlayerSnapshotWhereUniqueInput | PlayerSnapshotWhereUniqueInput[] No
delete PlayerSnapshotWhereUniqueInput | PlayerSnapshotWhereUniqueInput[] No
connect PlayerSnapshotWhereUniqueInput | PlayerSnapshotWhereUniqueInput[] No
update PlayerSnapshotUpdateWithWhereUniqueWithoutPositionInput | PlayerSnapshotUpdateWithWhereUniqueWithoutPositionInput[] No
updateMany PlayerSnapshotUpdateManyWithWhereWithoutPositionInput | PlayerSnapshotUpdateManyWithWhereWithoutPositionInput[] No
deleteMany PlayerSnapshotScalarWhereInput | PlayerSnapshotScalarWhereInput[] No

PlayerCreateNestedOneWithoutProfileInput

Name Type Nullable
create PlayerCreateWithoutProfileInput | PlayerUncheckedCreateWithoutProfileInput No
connectOrCreate PlayerCreateOrConnectWithoutProfileInput No
connect PlayerWhereUniqueInput No




PlayerUncheckedCreateNestedOneWithoutProfileInput

Name Type Nullable
create PlayerCreateWithoutProfileInput | PlayerUncheckedCreateWithoutProfileInput No
connectOrCreate PlayerCreateOrConnectWithoutProfileInput No
connect PlayerWhereUniqueInput No




PlayerUpdateOneWithoutProfileInput

Name Type Nullable
create PlayerCreateWithoutProfileInput | PlayerUncheckedCreateWithoutProfileInput No
connectOrCreate PlayerCreateOrConnectWithoutProfileInput No
upsert PlayerUpsertWithoutProfileInput No
disconnect Boolean No
delete Boolean No
connect PlayerWhereUniqueInput No
update PlayerUpdateWithoutProfileInput | PlayerUncheckedUpdateWithoutProfileInput No

DateTimeFieldUpdateOperationsInput

Name Type Nullable
set DateTime No

ActivityUpdateManyWithoutProfileInput

Name Type Nullable
create ActivityCreateWithoutProfileInput | ActivityCreateWithoutProfileInput[] | ActivityUncheckedCreateWithoutProfileInput | ActivityUncheckedCreateWithoutProfileInput[] No
connectOrCreate ActivityCreateOrConnectWithoutProfileInput | ActivityCreateOrConnectWithoutProfileInput[] No
upsert ActivityUpsertWithWhereUniqueWithoutProfileInput | ActivityUpsertWithWhereUniqueWithoutProfileInput[] No
createMany ActivityCreateManyProfileInputEnvelope No
set ActivityWhereUniqueInput | ActivityWhereUniqueInput[] No
disconnect ActivityWhereUniqueInput | ActivityWhereUniqueInput[] No
delete ActivityWhereUniqueInput | ActivityWhereUniqueInput[] No
connect ActivityWhereUniqueInput | ActivityWhereUniqueInput[] No
update ActivityUpdateWithWhereUniqueWithoutProfileInput | ActivityUpdateWithWhereUniqueWithoutProfileInput[] No
updateMany ActivityUpdateManyWithWhereWithoutProfileInput | ActivityUpdateManyWithWhereWithoutProfileInput[] No
deleteMany ActivityScalarWhereInput | ActivityScalarWhereInput[] No

ChampionWinrateUpdateManyWithoutProfileInput

Name Type Nullable
create ChampionWinrateCreateWithoutProfileInput | ChampionWinrateCreateWithoutProfileInput[] | ChampionWinrateUncheckedCreateWithoutProfileInput | ChampionWinrateUncheckedCreateWithoutProfileInput[] No
connectOrCreate ChampionWinrateCreateOrConnectWithoutProfileInput | ChampionWinrateCreateOrConnectWithoutProfileInput[] No
upsert ChampionWinrateUpsertWithWhereUniqueWithoutProfileInput | ChampionWinrateUpsertWithWhereUniqueWithoutProfileInput[] No
createMany ChampionWinrateCreateManyProfileInputEnvelope No
set ChampionWinrateWhereUniqueInput | ChampionWinrateWhereUniqueInput[] No
disconnect ChampionWinrateWhereUniqueInput | ChampionWinrateWhereUniqueInput[] No
delete ChampionWinrateWhereUniqueInput | ChampionWinrateWhereUniqueInput[] No
connect ChampionWinrateWhereUniqueInput | ChampionWinrateWhereUniqueInput[] No
update ChampionWinrateUpdateWithWhereUniqueWithoutProfileInput | ChampionWinrateUpdateWithWhereUniqueWithoutProfileInput[] No
updateMany ChampionWinrateUpdateManyWithWhereWithoutProfileInput | ChampionWinrateUpdateManyWithWhereWithoutProfileInput[] No
deleteMany ChampionWinrateScalarWhereInput | ChampionWinrateScalarWhereInput[] No

DuoUpdateManyWithoutProfileInput

Name Type Nullable
create DuoCreateWithoutProfileInput | DuoCreateWithoutProfileInput[] | DuoUncheckedCreateWithoutProfileInput | DuoUncheckedCreateWithoutProfileInput[] No
connectOrCreate DuoCreateOrConnectWithoutProfileInput | DuoCreateOrConnectWithoutProfileInput[] No
upsert DuoUpsertWithWhereUniqueWithoutProfileInput | DuoUpsertWithWhereUniqueWithoutProfileInput[] No
createMany DuoCreateManyProfileInputEnvelope No
set DuoWhereUniqueInput | DuoWhereUniqueInput[] No
disconnect DuoWhereUniqueInput | DuoWhereUniqueInput[] No
delete DuoWhereUniqueInput | DuoWhereUniqueInput[] No
connect DuoWhereUniqueInput | DuoWhereUniqueInput[] No
update DuoUpdateWithWhereUniqueWithoutProfileInput | DuoUpdateWithWhereUniqueWithoutProfileInput[] No
updateMany DuoUpdateManyWithWhereWithoutProfileInput | DuoUpdateManyWithWhereWithoutProfileInput[] No
deleteMany DuoScalarWhereInput | DuoScalarWhereInput[] No

PlayerUncheckedUpdateOneWithoutProfileInput

Name Type Nullable
create PlayerCreateWithoutProfileInput | PlayerUncheckedCreateWithoutProfileInput No
connectOrCreate PlayerCreateOrConnectWithoutProfileInput No
upsert PlayerUpsertWithoutProfileInput No
disconnect Boolean No
delete Boolean No
connect PlayerWhereUniqueInput No
update PlayerUpdateWithoutProfileInput | PlayerUncheckedUpdateWithoutProfileInput No

ActivityUncheckedUpdateManyWithoutProfileInput

Name Type Nullable
create ActivityCreateWithoutProfileInput | ActivityCreateWithoutProfileInput[] | ActivityUncheckedCreateWithoutProfileInput | ActivityUncheckedCreateWithoutProfileInput[] No
connectOrCreate ActivityCreateOrConnectWithoutProfileInput | ActivityCreateOrConnectWithoutProfileInput[] No
upsert ActivityUpsertWithWhereUniqueWithoutProfileInput | ActivityUpsertWithWhereUniqueWithoutProfileInput[] No
createMany ActivityCreateManyProfileInputEnvelope No
set ActivityWhereUniqueInput | ActivityWhereUniqueInput[] No
disconnect ActivityWhereUniqueInput | ActivityWhereUniqueInput[] No
delete ActivityWhereUniqueInput | ActivityWhereUniqueInput[] No
connect ActivityWhereUniqueInput | ActivityWhereUniqueInput[] No
update ActivityUpdateWithWhereUniqueWithoutProfileInput | ActivityUpdateWithWhereUniqueWithoutProfileInput[] No
updateMany ActivityUpdateManyWithWhereWithoutProfileInput | ActivityUpdateManyWithWhereWithoutProfileInput[] No
deleteMany ActivityScalarWhereInput | ActivityScalarWhereInput[] No

ChampionWinrateUncheckedUpdateManyWithoutProfileInput

Name Type Nullable
create ChampionWinrateCreateWithoutProfileInput | ChampionWinrateCreateWithoutProfileInput[] | ChampionWinrateUncheckedCreateWithoutProfileInput | ChampionWinrateUncheckedCreateWithoutProfileInput[] No
connectOrCreate ChampionWinrateCreateOrConnectWithoutProfileInput | ChampionWinrateCreateOrConnectWithoutProfileInput[] No
upsert ChampionWinrateUpsertWithWhereUniqueWithoutProfileInput | ChampionWinrateUpsertWithWhereUniqueWithoutProfileInput[] No
createMany ChampionWinrateCreateManyProfileInputEnvelope No
set ChampionWinrateWhereUniqueInput | ChampionWinrateWhereUniqueInput[] No
disconnect ChampionWinrateWhereUniqueInput | ChampionWinrateWhereUniqueInput[] No
delete ChampionWinrateWhereUniqueInput | ChampionWinrateWhereUniqueInput[] No
connect ChampionWinrateWhereUniqueInput | ChampionWinrateWhereUniqueInput[] No
update ChampionWinrateUpdateWithWhereUniqueWithoutProfileInput | ChampionWinrateUpdateWithWhereUniqueWithoutProfileInput[] No
updateMany ChampionWinrateUpdateManyWithWhereWithoutProfileInput | ChampionWinrateUpdateManyWithWhereWithoutProfileInput[] No
deleteMany ChampionWinrateScalarWhereInput | ChampionWinrateScalarWhereInput[] No

DuoUncheckedUpdateManyWithoutProfileInput

Name Type Nullable
create DuoCreateWithoutProfileInput | DuoCreateWithoutProfileInput[] | DuoUncheckedCreateWithoutProfileInput | DuoUncheckedCreateWithoutProfileInput[] No
connectOrCreate DuoCreateOrConnectWithoutProfileInput | DuoCreateOrConnectWithoutProfileInput[] No
upsert DuoUpsertWithWhereUniqueWithoutProfileInput | DuoUpsertWithWhereUniqueWithoutProfileInput[] No
createMany DuoCreateManyProfileInputEnvelope No
set DuoWhereUniqueInput | DuoWhereUniqueInput[] No
disconnect DuoWhereUniqueInput | DuoWhereUniqueInput[] No
delete DuoWhereUniqueInput | DuoWhereUniqueInput[] No
connect DuoWhereUniqueInput | DuoWhereUniqueInput[] No
update DuoUpdateWithWhereUniqueWithoutProfileInput | DuoUpdateWithWhereUniqueWithoutProfileInput[] No
updateMany DuoUpdateManyWithWhereWithoutProfileInput | DuoUpdateManyWithWhereWithoutProfileInput[] No
deleteMany DuoScalarWhereInput | DuoScalarWhereInput[] No



GameUpdateManyWithoutSourceInput

Name Type Nullable
create GameCreateWithoutSourceInput | GameCreateWithoutSourceInput[] | GameUncheckedCreateWithoutSourceInput | GameUncheckedCreateWithoutSourceInput[] No
connectOrCreate GameCreateOrConnectWithoutSourceInput | GameCreateOrConnectWithoutSourceInput[] No
upsert GameUpsertWithWhereUniqueWithoutSourceInput | GameUpsertWithWhereUniqueWithoutSourceInput[] No
set GameWhereUniqueInput | GameWhereUniqueInput[] No
disconnect GameWhereUniqueInput | GameWhereUniqueInput[] No
delete GameWhereUniqueInput | GameWhereUniqueInput[] No
connect GameWhereUniqueInput | GameWhereUniqueInput[] No
update GameUpdateWithWhereUniqueWithoutSourceInput | GameUpdateWithWhereUniqueWithoutSourceInput[] No
updateMany GameUpdateManyWithWhereWithoutSourceInput | GameUpdateManyWithWhereWithoutSourceInput[] No
deleteMany GameScalarWhereInput | GameScalarWhereInput[] No

GameUncheckedUpdateManyWithoutSourceInput

Name Type Nullable
create GameCreateWithoutSourceInput | GameCreateWithoutSourceInput[] | GameUncheckedCreateWithoutSourceInput | GameUncheckedCreateWithoutSourceInput[] No
connectOrCreate GameCreateOrConnectWithoutSourceInput | GameCreateOrConnectWithoutSourceInput[] No
upsert GameUpsertWithWhereUniqueWithoutSourceInput | GameUpsertWithWhereUniqueWithoutSourceInput[] No
set GameWhereUniqueInput | GameWhereUniqueInput[] No
disconnect GameWhereUniqueInput | GameWhereUniqueInput[] No
delete GameWhereUniqueInput | GameWhereUniqueInput[] No
connect GameWhereUniqueInput | GameWhereUniqueInput[] No
update GameUpdateWithWhereUniqueWithoutSourceInput | GameUpdateWithWhereUniqueWithoutSourceInput[] No
updateMany GameUpdateManyWithWhereWithoutSourceInput | GameUpdateManyWithWhereWithoutSourceInput[] No
deleteMany GameScalarWhereInput | GameScalarWhereInput[] No


GameCreateNestedOneWithoutFrom_Team_gameInput

Name Type Nullable
create GameCreateWithoutFrom_Team_gameInput | GameUncheckedCreateWithoutFrom_Team_gameInput No
connectOrCreate GameCreateOrConnectWithoutFrom_Team_gameInput No
connect GameWhereUniqueInput No










PickBanUpdateManyWithoutTeamInput

Name Type Nullable
create PickBanCreateWithoutTeamInput | PickBanCreateWithoutTeamInput[] | PickBanUncheckedCreateWithoutTeamInput | PickBanUncheckedCreateWithoutTeamInput[] No
connectOrCreate PickBanCreateOrConnectWithoutTeamInput | PickBanCreateOrConnectWithoutTeamInput[] No
upsert PickBanUpsertWithWhereUniqueWithoutTeamInput | PickBanUpsertWithWhereUniqueWithoutTeamInput[] No
createMany PickBanCreateManyTeamInputEnvelope No
set PickBanWhereUniqueInput | PickBanWhereUniqueInput[] No
disconnect PickBanWhereUniqueInput | PickBanWhereUniqueInput[] No
delete PickBanWhereUniqueInput | PickBanWhereUniqueInput[] No
connect PickBanWhereUniqueInput | PickBanWhereUniqueInput[] No
update PickBanUpdateWithWhereUniqueWithoutTeamInput | PickBanUpdateWithWhereUniqueWithoutTeamInput[] No
updateMany PickBanUpdateManyWithWhereWithoutTeamInput | PickBanUpdateManyWithWhereWithoutTeamInput[] No
deleteMany PickBanScalarWhereInput | PickBanScalarWhereInput[] No


PlayerUpdateManyWithoutTeamsInput

Name Type Nullable
create PlayerCreateWithoutTeamsInput | PlayerCreateWithoutTeamsInput[] | PlayerUncheckedCreateWithoutTeamsInput | PlayerUncheckedCreateWithoutTeamsInput[] No
connectOrCreate PlayerCreateOrConnectWithoutTeamsInput | PlayerCreateOrConnectWithoutTeamsInput[] No
upsert PlayerUpsertWithWhereUniqueWithoutTeamsInput | PlayerUpsertWithWhereUniqueWithoutTeamsInput[] No
set PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
disconnect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
delete PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
connect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
update PlayerUpdateWithWhereUniqueWithoutTeamsInput | PlayerUpdateWithWhereUniqueWithoutTeamsInput[] No
updateMany PlayerUpdateManyWithWhereWithoutTeamsInput | PlayerUpdateManyWithWhereWithoutTeamsInput[] No
deleteMany PlayerScalarWhereInput | PlayerScalarWhereInput[] No

ObjectiveUpdateManyWithoutTeamInput

Name Type Nullable
create ObjectiveCreateWithoutTeamInput | ObjectiveCreateWithoutTeamInput[] | ObjectiveUncheckedCreateWithoutTeamInput | ObjectiveUncheckedCreateWithoutTeamInput[] No
connectOrCreate ObjectiveCreateOrConnectWithoutTeamInput | ObjectiveCreateOrConnectWithoutTeamInput[] No
upsert ObjectiveUpsertWithWhereUniqueWithoutTeamInput | ObjectiveUpsertWithWhereUniqueWithoutTeamInput[] No
createMany ObjectiveCreateManyTeamInputEnvelope No
set ObjectiveWhereUniqueInput | ObjectiveWhereUniqueInput[] No
disconnect ObjectiveWhereUniqueInput | ObjectiveWhereUniqueInput[] No
delete ObjectiveWhereUniqueInput | ObjectiveWhereUniqueInput[] No
connect ObjectiveWhereUniqueInput | ObjectiveWhereUniqueInput[] No
update ObjectiveUpdateWithWhereUniqueWithoutTeamInput | ObjectiveUpdateWithWhereUniqueWithoutTeamInput[] No
updateMany ObjectiveUpdateManyWithWhereWithoutTeamInput | ObjectiveUpdateManyWithWhereWithoutTeamInput[] No
deleteMany ObjectiveScalarWhereInput | ObjectiveScalarWhereInput[] No

GameUpdateManyWithoutBlueTeamInput

Name Type Nullable
create GameCreateWithoutBlueTeamInput | GameCreateWithoutBlueTeamInput[] | GameUncheckedCreateWithoutBlueTeamInput | GameUncheckedCreateWithoutBlueTeamInput[] No
connectOrCreate GameCreateOrConnectWithoutBlueTeamInput | GameCreateOrConnectWithoutBlueTeamInput[] No
upsert GameUpsertWithWhereUniqueWithoutBlueTeamInput | GameUpsertWithWhereUniqueWithoutBlueTeamInput[] No
createMany GameCreateManyBlueTeamInputEnvelope No
set GameWhereUniqueInput | GameWhereUniqueInput[] No
disconnect GameWhereUniqueInput | GameWhereUniqueInput[] No
delete GameWhereUniqueInput | GameWhereUniqueInput[] No
connect GameWhereUniqueInput | GameWhereUniqueInput[] No
update GameUpdateWithWhereUniqueWithoutBlueTeamInput | GameUpdateWithWhereUniqueWithoutBlueTeamInput[] No
updateMany GameUpdateManyWithWhereWithoutBlueTeamInput | GameUpdateManyWithWhereWithoutBlueTeamInput[] No
deleteMany GameScalarWhereInput | GameScalarWhereInput[] No

GameUpdateManyWithoutRedTeamInput

Name Type Nullable
create GameCreateWithoutRedTeamInput | GameCreateWithoutRedTeamInput[] | GameUncheckedCreateWithoutRedTeamInput | GameUncheckedCreateWithoutRedTeamInput[] No
connectOrCreate GameCreateOrConnectWithoutRedTeamInput | GameCreateOrConnectWithoutRedTeamInput[] No
upsert GameUpsertWithWhereUniqueWithoutRedTeamInput | GameUpsertWithWhereUniqueWithoutRedTeamInput[] No
createMany GameCreateManyRedTeamInputEnvelope No
set GameWhereUniqueInput | GameWhereUniqueInput[] No
disconnect GameWhereUniqueInput | GameWhereUniqueInput[] No
delete GameWhereUniqueInput | GameWhereUniqueInput[] No
connect GameWhereUniqueInput | GameWhereUniqueInput[] No
update GameUpdateWithWhereUniqueWithoutRedTeamInput | GameUpdateWithWhereUniqueWithoutRedTeamInput[] No
updateMany GameUpdateManyWithWhereWithoutRedTeamInput | GameUpdateManyWithWhereWithoutRedTeamInput[] No
deleteMany GameScalarWhereInput | GameScalarWhereInput[] No

PickBanUncheckedUpdateManyWithoutTeamInput

Name Type Nullable
create PickBanCreateWithoutTeamInput | PickBanCreateWithoutTeamInput[] | PickBanUncheckedCreateWithoutTeamInput | PickBanUncheckedCreateWithoutTeamInput[] No
connectOrCreate PickBanCreateOrConnectWithoutTeamInput | PickBanCreateOrConnectWithoutTeamInput[] No
upsert PickBanUpsertWithWhereUniqueWithoutTeamInput | PickBanUpsertWithWhereUniqueWithoutTeamInput[] No
createMany PickBanCreateManyTeamInputEnvelope No
set PickBanWhereUniqueInput | PickBanWhereUniqueInput[] No
disconnect PickBanWhereUniqueInput | PickBanWhereUniqueInput[] No
delete PickBanWhereUniqueInput | PickBanWhereUniqueInput[] No
connect PickBanWhereUniqueInput | PickBanWhereUniqueInput[] No
update PickBanUpdateWithWhereUniqueWithoutTeamInput | PickBanUpdateWithWhereUniqueWithoutTeamInput[] No
updateMany PickBanUpdateManyWithWhereWithoutTeamInput | PickBanUpdateManyWithWhereWithoutTeamInput[] No
deleteMany PickBanScalarWhereInput | PickBanScalarWhereInput[] No

PlayerUncheckedUpdateManyWithoutTeamsInput

Name Type Nullable
create PlayerCreateWithoutTeamsInput | PlayerCreateWithoutTeamsInput[] | PlayerUncheckedCreateWithoutTeamsInput | PlayerUncheckedCreateWithoutTeamsInput[] No
connectOrCreate PlayerCreateOrConnectWithoutTeamsInput | PlayerCreateOrConnectWithoutTeamsInput[] No
upsert PlayerUpsertWithWhereUniqueWithoutTeamsInput | PlayerUpsertWithWhereUniqueWithoutTeamsInput[] No
set PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
disconnect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
delete PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
connect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
update PlayerUpdateWithWhereUniqueWithoutTeamsInput | PlayerUpdateWithWhereUniqueWithoutTeamsInput[] No
updateMany PlayerUpdateManyWithWhereWithoutTeamsInput | PlayerUpdateManyWithWhereWithoutTeamsInput[] No
deleteMany PlayerScalarWhereInput | PlayerScalarWhereInput[] No

ObjectiveUncheckedUpdateManyWithoutTeamInput

Name Type Nullable
create ObjectiveCreateWithoutTeamInput | ObjectiveCreateWithoutTeamInput[] | ObjectiveUncheckedCreateWithoutTeamInput | ObjectiveUncheckedCreateWithoutTeamInput[] No
connectOrCreate ObjectiveCreateOrConnectWithoutTeamInput | ObjectiveCreateOrConnectWithoutTeamInput[] No
upsert ObjectiveUpsertWithWhereUniqueWithoutTeamInput | ObjectiveUpsertWithWhereUniqueWithoutTeamInput[] No
createMany ObjectiveCreateManyTeamInputEnvelope No
set ObjectiveWhereUniqueInput | ObjectiveWhereUniqueInput[] No
disconnect ObjectiveWhereUniqueInput | ObjectiveWhereUniqueInput[] No
delete ObjectiveWhereUniqueInput | ObjectiveWhereUniqueInput[] No
connect ObjectiveWhereUniqueInput | ObjectiveWhereUniqueInput[] No
update ObjectiveUpdateWithWhereUniqueWithoutTeamInput | ObjectiveUpdateWithWhereUniqueWithoutTeamInput[] No
updateMany ObjectiveUpdateManyWithWhereWithoutTeamInput | ObjectiveUpdateManyWithWhereWithoutTeamInput[] No
deleteMany ObjectiveScalarWhereInput | ObjectiveScalarWhereInput[] No

GameUncheckedUpdateManyWithoutBlueTeamInput

Name Type Nullable
create GameCreateWithoutBlueTeamInput | GameCreateWithoutBlueTeamInput[] | GameUncheckedCreateWithoutBlueTeamInput | GameUncheckedCreateWithoutBlueTeamInput[] No
connectOrCreate GameCreateOrConnectWithoutBlueTeamInput | GameCreateOrConnectWithoutBlueTeamInput[] No
upsert GameUpsertWithWhereUniqueWithoutBlueTeamInput | GameUpsertWithWhereUniqueWithoutBlueTeamInput[] No
createMany GameCreateManyBlueTeamInputEnvelope No
set GameWhereUniqueInput | GameWhereUniqueInput[] No
disconnect GameWhereUniqueInput | GameWhereUniqueInput[] No
delete GameWhereUniqueInput | GameWhereUniqueInput[] No
connect GameWhereUniqueInput | GameWhereUniqueInput[] No
update GameUpdateWithWhereUniqueWithoutBlueTeamInput | GameUpdateWithWhereUniqueWithoutBlueTeamInput[] No
updateMany GameUpdateManyWithWhereWithoutBlueTeamInput | GameUpdateManyWithWhereWithoutBlueTeamInput[] No
deleteMany GameScalarWhereInput | GameScalarWhereInput[] No

GameUncheckedUpdateManyWithoutRedTeamInput

Name Type Nullable
create GameCreateWithoutRedTeamInput | GameCreateWithoutRedTeamInput[] | GameUncheckedCreateWithoutRedTeamInput | GameUncheckedCreateWithoutRedTeamInput[] No
connectOrCreate GameCreateOrConnectWithoutRedTeamInput | GameCreateOrConnectWithoutRedTeamInput[] No
upsert GameUpsertWithWhereUniqueWithoutRedTeamInput | GameUpsertWithWhereUniqueWithoutRedTeamInput[] No
createMany GameCreateManyRedTeamInputEnvelope No
set GameWhereUniqueInput | GameWhereUniqueInput[] No
disconnect GameWhereUniqueInput | GameWhereUniqueInput[] No
delete GameWhereUniqueInput | GameWhereUniqueInput[] No
connect GameWhereUniqueInput | GameWhereUniqueInput[] No
update GameUpdateWithWhereUniqueWithoutRedTeamInput | GameUpdateWithWhereUniqueWithoutRedTeamInput[] No
updateMany GameUpdateManyWithWhereWithoutRedTeamInput | GameUpdateManyWithWhereWithoutRedTeamInput[] No
deleteMany GameScalarWhereInput | GameScalarWhereInput[] No



PlayerUpdateManyWithoutBuildingKillsInput

Name Type Nullable
create PlayerCreateWithoutBuildingKillsInput | PlayerCreateWithoutBuildingKillsInput[] | PlayerUncheckedCreateWithoutBuildingKillsInput | PlayerUncheckedCreateWithoutBuildingKillsInput[] No
connectOrCreate PlayerCreateOrConnectWithoutBuildingKillsInput | PlayerCreateOrConnectWithoutBuildingKillsInput[] No
upsert PlayerUpsertWithWhereUniqueWithoutBuildingKillsInput | PlayerUpsertWithWhereUniqueWithoutBuildingKillsInput[] No
set PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
disconnect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
delete PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
connect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
update PlayerUpdateWithWhereUniqueWithoutBuildingKillsInput | PlayerUpdateWithWhereUniqueWithoutBuildingKillsInput[] No
updateMany PlayerUpdateManyWithWhereWithoutBuildingKillsInput | PlayerUpdateManyWithWhereWithoutBuildingKillsInput[] No
deleteMany PlayerScalarWhereInput | PlayerScalarWhereInput[] No

PlayerUncheckedUpdateManyWithoutBuildingKillsInput

Name Type Nullable
create PlayerCreateWithoutBuildingKillsInput | PlayerCreateWithoutBuildingKillsInput[] | PlayerUncheckedCreateWithoutBuildingKillsInput | PlayerUncheckedCreateWithoutBuildingKillsInput[] No
connectOrCreate PlayerCreateOrConnectWithoutBuildingKillsInput | PlayerCreateOrConnectWithoutBuildingKillsInput[] No
upsert PlayerUpsertWithWhereUniqueWithoutBuildingKillsInput | PlayerUpsertWithWhereUniqueWithoutBuildingKillsInput[] No
set PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
disconnect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
delete PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
connect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
update PlayerUpdateWithWhereUniqueWithoutBuildingKillsInput | PlayerUpdateWithWhereUniqueWithoutBuildingKillsInput[] No
updateMany PlayerUpdateManyWithWhereWithoutBuildingKillsInput | PlayerUpdateManyWithWhereWithoutBuildingKillsInput[] No
deleteMany PlayerScalarWhereInput | PlayerScalarWhereInput[] No



PlayerUpdateManyWithoutMonsterKillsInput

Name Type Nullable
create PlayerCreateWithoutMonsterKillsInput | PlayerCreateWithoutMonsterKillsInput[] | PlayerUncheckedCreateWithoutMonsterKillsInput | PlayerUncheckedCreateWithoutMonsterKillsInput[] No
connectOrCreate PlayerCreateOrConnectWithoutMonsterKillsInput | PlayerCreateOrConnectWithoutMonsterKillsInput[] No
upsert PlayerUpsertWithWhereUniqueWithoutMonsterKillsInput | PlayerUpsertWithWhereUniqueWithoutMonsterKillsInput[] No
set PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
disconnect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
delete PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
connect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
update PlayerUpdateWithWhereUniqueWithoutMonsterKillsInput | PlayerUpdateWithWhereUniqueWithoutMonsterKillsInput[] No
updateMany PlayerUpdateManyWithWhereWithoutMonsterKillsInput | PlayerUpdateManyWithWhereWithoutMonsterKillsInput[] No
deleteMany PlayerScalarWhereInput | PlayerScalarWhereInput[] No

PlayerUncheckedUpdateManyWithoutMonsterKillsInput

Name Type Nullable
create PlayerCreateWithoutMonsterKillsInput | PlayerCreateWithoutMonsterKillsInput[] | PlayerUncheckedCreateWithoutMonsterKillsInput | PlayerUncheckedCreateWithoutMonsterKillsInput[] No
connectOrCreate PlayerCreateOrConnectWithoutMonsterKillsInput | PlayerCreateOrConnectWithoutMonsterKillsInput[] No
upsert PlayerUpsertWithWhereUniqueWithoutMonsterKillsInput | PlayerUpsertWithWhereUniqueWithoutMonsterKillsInput[] No
set PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
disconnect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
delete PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
connect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
update PlayerUpdateWithWhereUniqueWithoutMonsterKillsInput | PlayerUpdateWithWhereUniqueWithoutMonsterKillsInput[] No
updateMany PlayerUpdateManyWithWhereWithoutMonsterKillsInput | PlayerUpdateManyWithWhereWithoutMonsterKillsInput[] No
deleteMany PlayerScalarWhereInput | PlayerScalarWhereInput[] No

RuneStyleCreateNestedOneWithoutSelectionInput

Name Type Nullable
create RuneStyleCreateWithoutSelectionInput | RuneStyleUncheckedCreateWithoutSelectionInput No
connectOrCreate RuneStyleCreateOrConnectWithoutSelectionInput No
connect RuneStyleWhereUniqueInput No


PlayerRuneCreateNestedOneWithoutRuneStyleInput

Name Type Nullable
create PlayerRuneCreateWithoutRuneStyleInput | PlayerRuneUncheckedCreateWithoutRuneStyleInput No
connectOrCreate PlayerRuneCreateOrConnectWithoutRuneStyleInput No
connect PlayerRuneWhereUniqueInput No




RuneSelectionUpdateManyWithoutRuneStyleInput

Name Type Nullable
create RuneSelectionCreateWithoutRuneStyleInput | RuneSelectionCreateWithoutRuneStyleInput[] | RuneSelectionUncheckedCreateWithoutRuneStyleInput | RuneSelectionUncheckedCreateWithoutRuneStyleInput[] No
connectOrCreate RuneSelectionCreateOrConnectWithoutRuneStyleInput | RuneSelectionCreateOrConnectWithoutRuneStyleInput[] No
upsert RuneSelectionUpsertWithWhereUniqueWithoutRuneStyleInput | RuneSelectionUpsertWithWhereUniqueWithoutRuneStyleInput[] No
createMany RuneSelectionCreateManyRuneStyleInputEnvelope No
set RuneSelectionWhereUniqueInput | RuneSelectionWhereUniqueInput[] No
disconnect RuneSelectionWhereUniqueInput | RuneSelectionWhereUniqueInput[] No
delete RuneSelectionWhereUniqueInput | RuneSelectionWhereUniqueInput[] No
connect RuneSelectionWhereUniqueInput | RuneSelectionWhereUniqueInput[] No
update RuneSelectionUpdateWithWhereUniqueWithoutRuneStyleInput | RuneSelectionUpdateWithWhereUniqueWithoutRuneStyleInput[] No
updateMany RuneSelectionUpdateManyWithWhereWithoutRuneStyleInput | RuneSelectionUpdateManyWithWhereWithoutRuneStyleInput[] No
deleteMany RuneSelectionScalarWhereInput | RuneSelectionScalarWhereInput[] No

RuneSelectionUncheckedUpdateManyWithoutRuneStyleInput

Name Type Nullable
create RuneSelectionCreateWithoutRuneStyleInput | RuneSelectionCreateWithoutRuneStyleInput[] | RuneSelectionUncheckedCreateWithoutRuneStyleInput | RuneSelectionUncheckedCreateWithoutRuneStyleInput[] No
connectOrCreate RuneSelectionCreateOrConnectWithoutRuneStyleInput | RuneSelectionCreateOrConnectWithoutRuneStyleInput[] No
upsert RuneSelectionUpsertWithWhereUniqueWithoutRuneStyleInput | RuneSelectionUpsertWithWhereUniqueWithoutRuneStyleInput[] No
createMany RuneSelectionCreateManyRuneStyleInputEnvelope No
set RuneSelectionWhereUniqueInput | RuneSelectionWhereUniqueInput[] No
disconnect RuneSelectionWhereUniqueInput | RuneSelectionWhereUniqueInput[] No
delete RuneSelectionWhereUniqueInput | RuneSelectionWhereUniqueInput[] No
connect RuneSelectionWhereUniqueInput | RuneSelectionWhereUniqueInput[] No
update RuneSelectionUpdateWithWhereUniqueWithoutRuneStyleInput | RuneSelectionUpdateWithWhereUniqueWithoutRuneStyleInput[] No
updateMany RuneSelectionUpdateManyWithWhereWithoutRuneStyleInput | RuneSelectionUpdateManyWithWhereWithoutRuneStyleInput[] No
deleteMany RuneSelectionScalarWhereInput | RuneSelectionScalarWhereInput[] No

NestedStringFilter

Name Type Nullable
equals String No
in String No
notIn String No
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
not String | NestedStringFilter No

NestedStringNullableFilter

Name Type Nullable
equals String | Null Yes
in String | Null Yes
notIn String | Null Yes
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
not String | NestedStringNullableFilter | Null Yes

NestedIntNullableFilter

Name Type Nullable
equals Int | Null Yes
in Int | Null Yes
notIn Int | Null Yes
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntNullableFilter | Null Yes

NestedStringWithAggregatesFilter

Name Type Nullable
equals String No
in String No
notIn String No
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
not String | NestedStringWithAggregatesFilter No
_count NestedIntFilter No
_min NestedStringFilter No
_max NestedStringFilter No

NestedIntFilter

Name Type Nullable
equals Int No
in Int No
notIn Int No
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntFilter No

NestedStringNullableWithAggregatesFilter

Name Type Nullable
equals String | Null Yes
in String | Null Yes
notIn String | Null Yes
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
not String | NestedStringNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedStringNullableFilter No
_max NestedStringNullableFilter No

NestedIntNullableWithAggregatesFilter

Name Type Nullable
equals Int | Null Yes
in Int | Null Yes
notIn Int | Null Yes
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedFloatNullableFilter No
_sum NestedIntNullableFilter No
_min NestedIntNullableFilter No
_max NestedIntNullableFilter No

NestedFloatNullableFilter

Name Type Nullable
equals Float | Null Yes
in Float | Null Yes
notIn Float | Null Yes
lt Float No
lte Float No
gt Float No
gte Float No
not Float | NestedFloatNullableFilter | Null Yes

NestedBoolFilter

Name Type Nullable
equals Boolean No
not Boolean | NestedBoolFilter No

NestedBoolWithAggregatesFilter

Name Type Nullable
equals Boolean No
not Boolean | NestedBoolWithAggregatesFilter No
_count NestedIntFilter No
_min NestedBoolFilter No
_max NestedBoolFilter No

NestedFloatNullableWithAggregatesFilter

Name Type Nullable
equals Float | Null Yes
in Float | Null Yes
notIn Float | Null Yes
lt Float No
lte Float No
gt Float No
gte Float No
not Float | NestedFloatNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedFloatNullableFilter No
_sum NestedFloatNullableFilter No
_min NestedFloatNullableFilter No
_max NestedFloatNullableFilter No

NestedEnumPlayerWardEventWardTypeTypeNullableFilter

Name Type Nullable
equals PlayerWardEventWardTypeType | Null Yes
in PlayerWardEventWardTypeType[] | Null Yes
notIn PlayerWardEventWardTypeType[] | Null Yes
not PlayerWardEventWardTypeType | NestedEnumPlayerWardEventWardTypeTypeNullableFilter | Null Yes


NestedDateTimeFilter

Name Type Nullable
equals DateTime No
in DateTime No
notIn DateTime No
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeFilter No

NestedDateTimeWithAggregatesFilter

Name Type Nullable
equals DateTime No
in DateTime No
notIn DateTime No
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedDateTimeFilter No
_max NestedDateTimeFilter No

ProfileCreateWithoutActivityInput

Name Type Nullable
id String No
update Boolean No
player PlayerCreateNestedOneWithoutProfileInput No
lastUpdate DateTime No
kills Int | Null Yes
deaths Int | Null Yes
assists Int | Null Yes
kda String No
winRate String No
csPerMinute String No
damagePerMinute String No
killsPerMinute String No
goldPerMinute String No
averageGameTime String No
averageTimeSpentDead String No
totalGameTime String No
championWinrate ChampionWinrateCreateNestedManyWithoutProfileInput No
duos DuoCreateNestedManyWithoutProfileInput No

ProfileUncheckedCreateWithoutActivityInput

Name Type Nullable
id String No
update Boolean No
player PlayerUncheckedCreateNestedOneWithoutProfileInput No
lastUpdate DateTime No
kills Int | Null Yes
deaths Int | Null Yes
assists Int | Null Yes
kda String No
winRate String No
csPerMinute String No
damagePerMinute String No
killsPerMinute String No
goldPerMinute String No
averageGameTime String No
averageTimeSpentDead String No
totalGameTime String No
championWinrate ChampionWinrateUncheckedCreateNestedManyWithoutProfileInput No
duos DuoUncheckedCreateNestedManyWithoutProfileInput No

ProfileCreateOrConnectWithoutActivityInput

Name Type Nullable
where ProfileWhereUniqueInput No
create ProfileCreateWithoutActivityInput | ProfileUncheckedCreateWithoutActivityInput No


ProfileUpdateWithoutActivityInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
update Boolean | BoolFieldUpdateOperationsInput No
player PlayerUpdateOneWithoutProfileInput No
lastUpdate DateTime | DateTimeFieldUpdateOperationsInput No
kills Int | NullableIntFieldUpdateOperationsInput | Null Yes
deaths Int | NullableIntFieldUpdateOperationsInput | Null Yes
assists Int | NullableIntFieldUpdateOperationsInput | Null Yes
kda String | StringFieldUpdateOperationsInput No
winRate String | StringFieldUpdateOperationsInput No
csPerMinute String | StringFieldUpdateOperationsInput No
damagePerMinute String | StringFieldUpdateOperationsInput No
killsPerMinute String | StringFieldUpdateOperationsInput No
goldPerMinute String | StringFieldUpdateOperationsInput No
averageGameTime String | StringFieldUpdateOperationsInput No
averageTimeSpentDead String | StringFieldUpdateOperationsInput No
totalGameTime String | StringFieldUpdateOperationsInput No
championWinrate ChampionWinrateUpdateManyWithoutProfileInput No
duos DuoUpdateManyWithoutProfileInput No

ProfileUncheckedUpdateWithoutActivityInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
update Boolean | BoolFieldUpdateOperationsInput No
player PlayerUncheckedUpdateOneWithoutProfileInput No
lastUpdate DateTime | DateTimeFieldUpdateOperationsInput No
kills Int | NullableIntFieldUpdateOperationsInput | Null Yes
deaths Int | NullableIntFieldUpdateOperationsInput | Null Yes
assists Int | NullableIntFieldUpdateOperationsInput | Null Yes
kda String | StringFieldUpdateOperationsInput No
winRate String | StringFieldUpdateOperationsInput No
csPerMinute String | StringFieldUpdateOperationsInput No
damagePerMinute String | StringFieldUpdateOperationsInput No
killsPerMinute String | StringFieldUpdateOperationsInput No
goldPerMinute String | StringFieldUpdateOperationsInput No
averageGameTime String | StringFieldUpdateOperationsInput No
averageTimeSpentDead String | StringFieldUpdateOperationsInput No
totalGameTime String | StringFieldUpdateOperationsInput No
championWinrate ChampionWinrateUncheckedUpdateManyWithoutProfileInput No
duos DuoUncheckedUpdateManyWithoutProfileInput No

ProfileCreateWithoutChampionWinrateInput

Name Type Nullable
id String No
update Boolean No
player PlayerCreateNestedOneWithoutProfileInput No
lastUpdate DateTime No
kills Int | Null Yes
deaths Int | Null Yes
assists Int | Null Yes
kda String No
winRate String No
csPerMinute String No
damagePerMinute String No
killsPerMinute String No
goldPerMinute String No
averageGameTime String No
averageTimeSpentDead String No
totalGameTime String No
activity ActivityCreateNestedManyWithoutProfileInput No
duos DuoCreateNestedManyWithoutProfileInput No

ProfileUncheckedCreateWithoutChampionWinrateInput

Name Type Nullable
id String No
update Boolean No
player PlayerUncheckedCreateNestedOneWithoutProfileInput No
lastUpdate DateTime No
kills Int | Null Yes
deaths Int | Null Yes
assists Int | Null Yes
kda String No
winRate String No
csPerMinute String No
damagePerMinute String No
killsPerMinute String No
goldPerMinute String No
averageGameTime String No
averageTimeSpentDead String No
totalGameTime String No
activity ActivityUncheckedCreateNestedManyWithoutProfileInput No
duos DuoUncheckedCreateNestedManyWithoutProfileInput No

ProfileCreateOrConnectWithoutChampionWinrateInput

Name Type Nullable
where ProfileWhereUniqueInput No
create ProfileCreateWithoutChampionWinrateInput | ProfileUncheckedCreateWithoutChampionWinrateInput No


ProfileUpdateWithoutChampionWinrateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
update Boolean | BoolFieldUpdateOperationsInput No
player PlayerUpdateOneWithoutProfileInput No
lastUpdate DateTime | DateTimeFieldUpdateOperationsInput No
kills Int | NullableIntFieldUpdateOperationsInput | Null Yes
deaths Int | NullableIntFieldUpdateOperationsInput | Null Yes
assists Int | NullableIntFieldUpdateOperationsInput | Null Yes
kda String | StringFieldUpdateOperationsInput No
winRate String | StringFieldUpdateOperationsInput No
csPerMinute String | StringFieldUpdateOperationsInput No
damagePerMinute String | StringFieldUpdateOperationsInput No
killsPerMinute String | StringFieldUpdateOperationsInput No
goldPerMinute String | StringFieldUpdateOperationsInput No
averageGameTime String | StringFieldUpdateOperationsInput No
averageTimeSpentDead String | StringFieldUpdateOperationsInput No
totalGameTime String | StringFieldUpdateOperationsInput No
activity ActivityUpdateManyWithoutProfileInput No
duos DuoUpdateManyWithoutProfileInput No

ProfileUncheckedUpdateWithoutChampionWinrateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
update Boolean | BoolFieldUpdateOperationsInput No
player PlayerUncheckedUpdateOneWithoutProfileInput No
lastUpdate DateTime | DateTimeFieldUpdateOperationsInput No
kills Int | NullableIntFieldUpdateOperationsInput | Null Yes
deaths Int | NullableIntFieldUpdateOperationsInput | Null Yes
assists Int | NullableIntFieldUpdateOperationsInput | Null Yes
kda String | StringFieldUpdateOperationsInput No
winRate String | StringFieldUpdateOperationsInput No
csPerMinute String | StringFieldUpdateOperationsInput No
damagePerMinute String | StringFieldUpdateOperationsInput No
killsPerMinute String | StringFieldUpdateOperationsInput No
goldPerMinute String | StringFieldUpdateOperationsInput No
averageGameTime String | StringFieldUpdateOperationsInput No
averageTimeSpentDead String | StringFieldUpdateOperationsInput No
totalGameTime String | StringFieldUpdateOperationsInput No
activity ActivityUncheckedUpdateManyWithoutProfileInput No
duos DuoUncheckedUpdateManyWithoutProfileInput No

ProfileCreateWithoutDuosInput

Name Type Nullable
id String No
update Boolean No
player PlayerCreateNestedOneWithoutProfileInput No
lastUpdate DateTime No
kills Int | Null Yes
deaths Int | Null Yes
assists Int | Null Yes
kda String No
winRate String No
csPerMinute String No
damagePerMinute String No
killsPerMinute String No
goldPerMinute String No
averageGameTime String No
averageTimeSpentDead String No
totalGameTime String No
activity ActivityCreateNestedManyWithoutProfileInput No
championWinrate ChampionWinrateCreateNestedManyWithoutProfileInput No

ProfileUncheckedCreateWithoutDuosInput

Name Type Nullable
id String No
update Boolean No
player PlayerUncheckedCreateNestedOneWithoutProfileInput No
lastUpdate DateTime No
kills Int | Null Yes
deaths Int | Null Yes
assists Int | Null Yes
kda String No
winRate String No
csPerMinute String No
damagePerMinute String No
killsPerMinute String No
goldPerMinute String No
averageGameTime String No
averageTimeSpentDead String No
totalGameTime String No
activity ActivityUncheckedCreateNestedManyWithoutProfileInput No
championWinrate ChampionWinrateUncheckedCreateNestedManyWithoutProfileInput No

ProfileCreateOrConnectWithoutDuosInput

Name Type Nullable
where ProfileWhereUniqueInput No
create ProfileCreateWithoutDuosInput | ProfileUncheckedCreateWithoutDuosInput No


ProfileUpdateWithoutDuosInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
update Boolean | BoolFieldUpdateOperationsInput No
player PlayerUpdateOneWithoutProfileInput No
lastUpdate DateTime | DateTimeFieldUpdateOperationsInput No
kills Int | NullableIntFieldUpdateOperationsInput | Null Yes
deaths Int | NullableIntFieldUpdateOperationsInput | Null Yes
assists Int | NullableIntFieldUpdateOperationsInput | Null Yes
kda String | StringFieldUpdateOperationsInput No
winRate String | StringFieldUpdateOperationsInput No
csPerMinute String | StringFieldUpdateOperationsInput No
damagePerMinute String | StringFieldUpdateOperationsInput No
killsPerMinute String | StringFieldUpdateOperationsInput No
goldPerMinute String | StringFieldUpdateOperationsInput No
averageGameTime String | StringFieldUpdateOperationsInput No
averageTimeSpentDead String | StringFieldUpdateOperationsInput No
totalGameTime String | StringFieldUpdateOperationsInput No
activity ActivityUpdateManyWithoutProfileInput No
championWinrate ChampionWinrateUpdateManyWithoutProfileInput No

ProfileUncheckedUpdateWithoutDuosInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
update Boolean | BoolFieldUpdateOperationsInput No
player PlayerUncheckedUpdateOneWithoutProfileInput No
lastUpdate DateTime | DateTimeFieldUpdateOperationsInput No
kills Int | NullableIntFieldUpdateOperationsInput | Null Yes
deaths Int | NullableIntFieldUpdateOperationsInput | Null Yes
assists Int | NullableIntFieldUpdateOperationsInput | Null Yes
kda String | StringFieldUpdateOperationsInput No
winRate String | StringFieldUpdateOperationsInput No
csPerMinute String | StringFieldUpdateOperationsInput No
damagePerMinute String | StringFieldUpdateOperationsInput No
killsPerMinute String | StringFieldUpdateOperationsInput No
goldPerMinute String | StringFieldUpdateOperationsInput No
averageGameTime String | StringFieldUpdateOperationsInput No
averageTimeSpentDead String | StringFieldUpdateOperationsInput No
totalGameTime String | StringFieldUpdateOperationsInput No
activity ActivityUncheckedUpdateManyWithoutProfileInput No
championWinrate ChampionWinrateUncheckedUpdateManyWithoutProfileInput No

PositionCreateWithoutEventInput

Name Type Nullable
id String No
x Int | Null Yes
y Int | Null Yes
playerSnapshot PlayerSnapshotCreateNestedManyWithoutPositionInput No

PositionUncheckedCreateWithoutEventInput

Name Type Nullable
id String No
x Int | Null Yes
y Int | Null Yes
playerSnapshot PlayerSnapshotUncheckedCreateNestedManyWithoutPositionInput No

PositionCreateOrConnectWithoutEventInput

Name Type Nullable
where PositionWhereUniqueInput No
create PositionCreateWithoutEventInput | PositionUncheckedCreateWithoutEventInput No


PositionUpdateWithWhereUniqueWithoutEventInput

Name Type Nullable
where PositionWhereUniqueInput No
data PositionUpdateWithoutEventInput | PositionUncheckedUpdateWithoutEventInput No

PositionUpdateManyWithWhereWithoutEventInput

Name Type Nullable
where PositionScalarWhereInput No
data PositionUpdateManyMutationInput | PositionUncheckedUpdateManyWithoutPositionInput No

PositionScalarWhereInput

Name Type Nullable
AND PositionScalarWhereInput | PositionScalarWhereInput[] No
OR PositionScalarWhereInput[] No
NOT PositionScalarWhereInput | PositionScalarWhereInput[] No
id StringFilter | String No
x IntNullableFilter | Int | Null Yes
y IntNullableFilter | Int | Null Yes

TeamCreateWithoutFrom_Game_blueTeamInput

Name Type Nullable
id String No
pickBan PickBanCreateNestedManyWithoutTeamInput No
game GameCreateNestedOneWithoutFrom_Team_gameInput No
players PlayerCreateNestedManyWithoutTeamsInput No
objectives ObjectiveCreateNestedManyWithoutTeamInput No
teamId Int | Null Yes
teamMatchId String No
win Boolean No
from_Game_redTeam GameCreateNestedManyWithoutRedTeamInput No

TeamUncheckedCreateWithoutFrom_Game_blueTeamInput

Name Type Nullable
id String No
pickBan PickBanUncheckedCreateNestedManyWithoutTeamInput No
gameId String | Null Yes
players PlayerUncheckedCreateNestedManyWithoutTeamsInput No
objectives ObjectiveUncheckedCreateNestedManyWithoutTeamInput No
teamId Int | Null Yes
teamMatchId String No
win Boolean No
from_Game_redTeam GameUncheckedCreateNestedManyWithoutRedTeamInput No

TeamCreateOrConnectWithoutFrom_Game_blueTeamInput

Name Type Nullable
where TeamWhereUniqueInput No
create TeamCreateWithoutFrom_Game_blueTeamInput | TeamUncheckedCreateWithoutFrom_Game_blueTeamInput No

TeamCreateWithoutFrom_Game_redTeamInput

Name Type Nullable
id String No
pickBan PickBanCreateNestedManyWithoutTeamInput No
game GameCreateNestedOneWithoutFrom_Team_gameInput No
players PlayerCreateNestedManyWithoutTeamsInput No
objectives ObjectiveCreateNestedManyWithoutTeamInput No
teamId Int | Null Yes
teamMatchId String No
win Boolean No
from_Game_blueTeam GameCreateNestedManyWithoutBlueTeamInput No

TeamUncheckedCreateWithoutFrom_Game_redTeamInput

Name Type Nullable
id String No
pickBan PickBanUncheckedCreateNestedManyWithoutTeamInput No
gameId String | Null Yes
players PlayerUncheckedCreateNestedManyWithoutTeamsInput No
objectives ObjectiveUncheckedCreateNestedManyWithoutTeamInput No
teamId Int | Null Yes
teamMatchId String No
win Boolean No
from_Game_blueTeam GameUncheckedCreateNestedManyWithoutBlueTeamInput No

TeamCreateOrConnectWithoutFrom_Game_redTeamInput

Name Type Nullable
where TeamWhereUniqueInput No
create TeamCreateWithoutFrom_Game_redTeamInput | TeamUncheckedCreateWithoutFrom_Game_redTeamInput No

SourceCreateWithoutGameInput

Name Type Nullable
id String No
api String No

SourceUncheckedCreateWithoutGameInput

Name Type Nullable
id String No
api String No

SourceCreateOrConnectWithoutGameInput

Name Type Nullable
where SourceWhereUniqueInput No
create SourceCreateWithoutGameInput | SourceUncheckedCreateWithoutGameInput No

PlayerEndOfGameStatCreateWithoutGameInput

Name Type Nullable
id String No
player PlayerCreateNestedOneWithoutEndOfGameStatsInput No
perks PlayerRuneCreateNestedOneWithoutPlayerEndOfGameStatInput No
items PlayerItemCreateNestedOneWithoutPlayerEndOfGameStatInput No
assists Int | Null Yes
baronKills Int | Null Yes
bountyLevel Int | Null Yes
championExperience Int | Null Yes
championLevel Int | Null Yes
championId Int | Null Yes
championName String No
championTransform Int | Null Yes
consumablesPurchased Int | Null Yes
damageDealtToBuildings Int | Null Yes
damageDealtToObjectives Int | Null Yes
damageDealtToTurrets Int | Null Yes
damageSelfMitigated Int | Null Yes
deaths Int | Null Yes
detectorWardsPlaced Int | Null Yes
doubleKills Int | Null Yes
dragonKills Int | Null Yes
firstBlood Boolean No
firstBloodAssist Boolean No
firstTowerKill Boolean No
firstTowerAssist Boolean No
gameEndedInEarlySurrender Boolean No
gameEndedInSurrender Boolean No
goldEarned Int | Null Yes
goldSpent Int | Null Yes
individualPosition String No
inhibitorKills Int | Null Yes
inhibitorTakedowns Int | Null Yes
inhibitorsLost Int | Null Yes
item0 Int | Null Yes
item1 Int | Null Yes
item2 Int | Null Yes
item3 Int | Null Yes
item4 Int | Null Yes
item5 Int | Null Yes
item6 Int | Null Yes
itemsPurchased Int | Null Yes
killingSprees Int | Null Yes
kills Int | Null Yes
lane String No
largestCriticalStrike Int | Null Yes
largestKillingSpree Int | Null Yes
largestMultiKill Int | Null Yes
longestTimeSpentLiving Int | Null Yes
magicDamageDealt Int | Null Yes
magicDamageDealtToChampions Int | Null Yes
magicDamageTaken Int | Null Yes
neutralMinionsKilled Int | Null Yes
nexusKills Int | Null Yes
nexusLost Int | Null Yes
nexusTakedowns Int | Null Yes
objectivesStolen Int | Null Yes
objectivesStolenAssists Int | Null Yes
participantId Int | Null Yes
pentaKills Int | Null Yes
physicalDamageDealt Int | Null Yes
physicalDamageDealtToChampions Int | Null Yes
physicalDamageTaken Int | Null Yes
quadraKills Int | Null Yes
riotIdName String No
riotIdTagline String No
role String No
sightWardsBoughtInGame Int | Null Yes
spell1Casts Int | Null Yes
spell2Casts Int | Null Yes
spell3Casts Int | Null Yes
spell4Casts Int | Null Yes
summoner1Casts Int | Null Yes
summoner1Id Int | Null Yes
summoner2Casts Int | Null Yes
summoner2Id Int | Null Yes
summonerLevel Int | Null Yes
summonerName String No
teamEarlySurrendered Boolean No
teamId Int | Null Yes
teamPosition String No
timeCCingOthers Int | Null Yes
timePlayed Int | Null Yes
totalDamageDealt Int | Null Yes
totalDamageDealtToChampions Int | Null Yes
totalDamageShieldedOnTeammates Int | Null Yes
totalDamageTaken Int | Null Yes
totalHeal Int | Null Yes
totalHealsOnTeammates Int | Null Yes
totalMinionsKilled Int | Null Yes
totalTimeCCDealt Int | Null Yes
totalTimeSpentDead Int | Null Yes
totalUnitsHealed Int | Null Yes
tripleKills Int | Null Yes
trueDamageDealt Int | Null Yes
trueDamageDealtToChampions Int | Null Yes
trueDamageTaken Int | Null Yes
turretsKilled Int | Null Yes
turretTakedowns Int | Null Yes
turretsLost Int | Null Yes
unrealKills Int | Null Yes
visionScore Int | Null Yes
visionWardsBoughtInGame Int | Null Yes
wardsKilled Int | Null Yes
wardsPlaced Int | Null Yes
win Boolean No

PlayerEndOfGameStatUncheckedCreateWithoutGameInput

Name Type Nullable
id String No
playerId String | Null Yes
perksId String | Null Yes
itemsId String | Null Yes
assists Int | Null Yes
baronKills Int | Null Yes
bountyLevel Int | Null Yes
championExperience Int | Null Yes
championLevel Int | Null Yes
championId Int | Null Yes
championName String No
championTransform Int | Null Yes
consumablesPurchased Int | Null Yes
damageDealtToBuildings Int | Null Yes
damageDealtToObjectives Int | Null Yes
damageDealtToTurrets Int | Null Yes
damageSelfMitigated Int | Null Yes
deaths Int | Null Yes
detectorWardsPlaced Int | Null Yes
doubleKills Int | Null Yes
dragonKills Int | Null Yes
firstBlood Boolean No
firstBloodAssist Boolean No
firstTowerKill Boolean No
firstTowerAssist Boolean No
gameEndedInEarlySurrender Boolean No
gameEndedInSurrender Boolean No
goldEarned Int | Null Yes
goldSpent Int | Null Yes
individualPosition String No
inhibitorKills Int | Null Yes
inhibitorTakedowns Int | Null Yes
inhibitorsLost Int | Null Yes
item0 Int | Null Yes
item1 Int | Null Yes
item2 Int | Null Yes
item3 Int | Null Yes
item4 Int | Null Yes
item5 Int | Null Yes
item6 Int | Null Yes
itemsPurchased Int | Null Yes
killingSprees Int | Null Yes
kills Int | Null Yes
lane String No
largestCriticalStrike Int | Null Yes
largestKillingSpree Int | Null Yes
largestMultiKill Int | Null Yes
longestTimeSpentLiving Int | Null Yes
magicDamageDealt Int | Null Yes
magicDamageDealtToChampions Int | Null Yes
magicDamageTaken Int | Null Yes
neutralMinionsKilled Int | Null Yes
nexusKills Int | Null Yes
nexusLost Int | Null Yes
nexusTakedowns Int | Null Yes
objectivesStolen Int | Null Yes
objectivesStolenAssists Int | Null Yes
participantId Int | Null Yes
pentaKills Int | Null Yes
physicalDamageDealt Int | Null Yes
physicalDamageDealtToChampions Int | Null Yes
physicalDamageTaken Int | Null Yes
quadraKills Int | Null Yes
riotIdName String No
riotIdTagline String No
role String No
sightWardsBoughtInGame Int | Null Yes
spell1Casts Int | Null Yes
spell2Casts Int | Null Yes
spell3Casts Int | Null Yes
spell4Casts Int | Null Yes
summoner1Casts Int | Null Yes
summoner1Id Int | Null Yes
summoner2Casts Int | Null Yes
summoner2Id Int | Null Yes
summonerLevel Int | Null Yes
summonerName String No
teamEarlySurrendered Boolean No
teamId Int | Null Yes
teamPosition String No
timeCCingOthers Int | Null Yes
timePlayed Int | Null Yes
totalDamageDealt Int | Null Yes
totalDamageDealtToChampions Int | Null Yes
totalDamageShieldedOnTeammates Int | Null Yes
totalDamageTaken Int | Null Yes
totalHeal Int | Null Yes
totalHealsOnTeammates Int | Null Yes
totalMinionsKilled Int | Null Yes
totalTimeCCDealt Int | Null Yes
totalTimeSpentDead Int | Null Yes
totalUnitsHealed Int | Null Yes
tripleKills Int | Null Yes
trueDamageDealt Int | Null Yes
trueDamageDealtToChampions Int | Null Yes
trueDamageTaken Int | Null Yes
turretsKilled Int | Null Yes
turretTakedowns Int | Null Yes
turretsLost Int | Null Yes
unrealKills Int | Null Yes
visionScore Int | Null Yes
visionWardsBoughtInGame Int | Null Yes
wardsKilled Int | Null Yes
wardsPlaced Int | Null Yes
win Boolean No

PlayerEndOfGameStatCreateOrConnectWithoutGameInput

Name Type Nullable
where PlayerEndOfGameStatWhereUniqueInput No
create PlayerEndOfGameStatCreateWithoutGameInput | PlayerEndOfGameStatUncheckedCreateWithoutGameInput No

PlayerEndOfGameStatCreateManyGameInputEnvelope

Name Type Nullable
data PlayerEndOfGameStatCreateManyGameInput[] No
skipDuplicates Boolean No

TeamCreateWithoutGameInput

Name Type Nullable
id String No
pickBan PickBanCreateNestedManyWithoutTeamInput No
players PlayerCreateNestedManyWithoutTeamsInput No
objectives ObjectiveCreateNestedManyWithoutTeamInput No
teamId Int | Null Yes
teamMatchId String No
win Boolean No
from_Game_blueTeam GameCreateNestedManyWithoutBlueTeamInput No
from_Game_redTeam GameCreateNestedManyWithoutRedTeamInput No

TeamUncheckedCreateWithoutGameInput

Name Type Nullable
id String No
pickBan PickBanUncheckedCreateNestedManyWithoutTeamInput No
players PlayerUncheckedCreateNestedManyWithoutTeamsInput No
objectives ObjectiveUncheckedCreateNestedManyWithoutTeamInput No
teamId Int | Null Yes
teamMatchId String No
win Boolean No
from_Game_blueTeam GameUncheckedCreateNestedManyWithoutBlueTeamInput No
from_Game_redTeam GameUncheckedCreateNestedManyWithoutRedTeamInput No

TeamCreateOrConnectWithoutGameInput

Name Type Nullable
where TeamWhereUniqueInput No
create TeamCreateWithoutGameInput | TeamUncheckedCreateWithoutGameInput No

TeamCreateManyGameInputEnvelope

Name Type Nullable
data TeamCreateManyGameInput[] No
skipDuplicates Boolean No


TeamUpdateWithoutFrom_Game_blueTeamInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
pickBan PickBanUpdateManyWithoutTeamInput No
game GameUpdateOneWithoutFrom_Team_gameInput No
players PlayerUpdateManyWithoutTeamsInput No
objectives ObjectiveUpdateManyWithoutTeamInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
teamMatchId String | StringFieldUpdateOperationsInput No
win Boolean | BoolFieldUpdateOperationsInput No
from_Game_redTeam GameUpdateManyWithoutRedTeamInput No

TeamUncheckedUpdateWithoutFrom_Game_blueTeamInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
pickBan PickBanUncheckedUpdateManyWithoutTeamInput No
gameId String | NullableStringFieldUpdateOperationsInput | Null Yes
players PlayerUncheckedUpdateManyWithoutTeamsInput No
objectives ObjectiveUncheckedUpdateManyWithoutTeamInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
teamMatchId String | StringFieldUpdateOperationsInput No
win Boolean | BoolFieldUpdateOperationsInput No
from_Game_redTeam GameUncheckedUpdateManyWithoutRedTeamInput No


TeamUpdateWithoutFrom_Game_redTeamInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
pickBan PickBanUpdateManyWithoutTeamInput No
game GameUpdateOneWithoutFrom_Team_gameInput No
players PlayerUpdateManyWithoutTeamsInput No
objectives ObjectiveUpdateManyWithoutTeamInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
teamMatchId String | StringFieldUpdateOperationsInput No
win Boolean | BoolFieldUpdateOperationsInput No
from_Game_blueTeam GameUpdateManyWithoutBlueTeamInput No

TeamUncheckedUpdateWithoutFrom_Game_redTeamInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
pickBan PickBanUncheckedUpdateManyWithoutTeamInput No
gameId String | NullableStringFieldUpdateOperationsInput | Null Yes
players PlayerUncheckedUpdateManyWithoutTeamsInput No
objectives ObjectiveUncheckedUpdateManyWithoutTeamInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
teamMatchId String | StringFieldUpdateOperationsInput No
win Boolean | BoolFieldUpdateOperationsInput No
from_Game_blueTeam GameUncheckedUpdateManyWithoutBlueTeamInput No

SourceUpsertWithWhereUniqueWithoutGameInput

Name Type Nullable
where SourceWhereUniqueInput No
update SourceUpdateWithoutGameInput | SourceUncheckedUpdateWithoutGameInput No
create SourceCreateWithoutGameInput | SourceUncheckedCreateWithoutGameInput No

SourceUpdateWithWhereUniqueWithoutGameInput

Name Type Nullable
where SourceWhereUniqueInput No
data SourceUpdateWithoutGameInput | SourceUncheckedUpdateWithoutGameInput No

SourceUpdateManyWithWhereWithoutGameInput

Name Type Nullable
where SourceScalarWhereInput No
data SourceUpdateManyMutationInput | SourceUncheckedUpdateManyWithoutSourceInput No

SourceScalarWhereInput

Name Type Nullable
AND SourceScalarWhereInput | SourceScalarWhereInput[] No
OR SourceScalarWhereInput[] No
NOT SourceScalarWhereInput | SourceScalarWhereInput[] No
id StringFilter | String No
api StringFilter | String No


PlayerEndOfGameStatUpdateWithWhereUniqueWithoutGameInput

Name Type Nullable
where PlayerEndOfGameStatWhereUniqueInput No
data PlayerEndOfGameStatUpdateWithoutGameInput | PlayerEndOfGameStatUncheckedUpdateWithoutGameInput No


PlayerEndOfGameStatScalarWhereInput

Name Type Nullable
AND PlayerEndOfGameStatScalarWhereInput | PlayerEndOfGameStatScalarWhereInput[] No
OR PlayerEndOfGameStatScalarWhereInput[] No
NOT PlayerEndOfGameStatScalarWhereInput | PlayerEndOfGameStatScalarWhereInput[] No
id StringFilter | String No
playerId StringNullableFilter | String | Null Yes
gameId StringNullableFilter | String | Null Yes
perksId StringNullableFilter | String | Null Yes
itemsId StringNullableFilter | String | Null Yes
assists IntNullableFilter | Int | Null Yes
baronKills IntNullableFilter | Int | Null Yes
bountyLevel IntNullableFilter | Int | Null Yes
championExperience IntNullableFilter | Int | Null Yes
championLevel IntNullableFilter | Int | Null Yes
championId IntNullableFilter | Int | Null Yes
championName StringFilter | String No
championTransform IntNullableFilter | Int | Null Yes
consumablesPurchased IntNullableFilter | Int | Null Yes
damageDealtToBuildings IntNullableFilter | Int | Null Yes
damageDealtToObjectives IntNullableFilter | Int | Null Yes
damageDealtToTurrets IntNullableFilter | Int | Null Yes
damageSelfMitigated IntNullableFilter | Int | Null Yes
deaths IntNullableFilter | Int | Null Yes
detectorWardsPlaced IntNullableFilter | Int | Null Yes
doubleKills IntNullableFilter | Int | Null Yes
dragonKills IntNullableFilter | Int | Null Yes
firstBlood BoolFilter | Boolean No
firstBloodAssist BoolFilter | Boolean No
firstTowerKill BoolFilter | Boolean No
firstTowerAssist BoolFilter | Boolean No
gameEndedInEarlySurrender BoolFilter | Boolean No
gameEndedInSurrender BoolFilter | Boolean No
goldEarned IntNullableFilter | Int | Null Yes
goldSpent IntNullableFilter | Int | Null Yes
individualPosition StringFilter | String No
inhibitorKills IntNullableFilter | Int | Null Yes
inhibitorTakedowns IntNullableFilter | Int | Null Yes
inhibitorsLost IntNullableFilter | Int | Null Yes
item0 IntNullableFilter | Int | Null Yes
item1 IntNullableFilter | Int | Null Yes
item2 IntNullableFilter | Int | Null Yes
item3 IntNullableFilter | Int | Null Yes
item4 IntNullableFilter | Int | Null Yes
item5 IntNullableFilter | Int | Null Yes
item6 IntNullableFilter | Int | Null Yes
itemsPurchased IntNullableFilter | Int | Null Yes
killingSprees IntNullableFilter | Int | Null Yes
kills IntNullableFilter | Int | Null Yes
lane StringFilter | String No
largestCriticalStrike IntNullableFilter | Int | Null Yes
largestKillingSpree IntNullableFilter | Int | Null Yes
largestMultiKill IntNullableFilter | Int | Null Yes
longestTimeSpentLiving IntNullableFilter | Int | Null Yes
magicDamageDealt IntNullableFilter | Int | Null Yes
magicDamageDealtToChampions IntNullableFilter | Int | Null Yes
magicDamageTaken IntNullableFilter | Int | Null Yes
neutralMinionsKilled IntNullableFilter | Int | Null Yes
nexusKills IntNullableFilter | Int | Null Yes
nexusLost IntNullableFilter | Int | Null Yes
nexusTakedowns IntNullableFilter | Int | Null Yes
objectivesStolen IntNullableFilter | Int | Null Yes
objectivesStolenAssists IntNullableFilter | Int | Null Yes
participantId IntNullableFilter | Int | Null Yes
pentaKills IntNullableFilter | Int | Null Yes
physicalDamageDealt IntNullableFilter | Int | Null Yes
physicalDamageDealtToChampions IntNullableFilter | Int | Null Yes
physicalDamageTaken IntNullableFilter | Int | Null Yes
quadraKills IntNullableFilter | Int | Null Yes
riotIdName StringFilter | String No
riotIdTagline StringFilter | String No
role StringFilter | String No
sightWardsBoughtInGame IntNullableFilter | Int | Null Yes
spell1Casts IntNullableFilter | Int | Null Yes
spell2Casts IntNullableFilter | Int | Null Yes
spell3Casts IntNullableFilter | Int | Null Yes
spell4Casts IntNullableFilter | Int | Null Yes
summoner1Casts IntNullableFilter | Int | Null Yes
summoner1Id IntNullableFilter | Int | Null Yes
summoner2Casts IntNullableFilter | Int | Null Yes
summoner2Id IntNullableFilter | Int | Null Yes
summonerLevel IntNullableFilter | Int | Null Yes
summonerName StringFilter | String No
teamEarlySurrendered BoolFilter | Boolean No
teamId IntNullableFilter | Int | Null Yes
teamPosition StringFilter | String No
timeCCingOthers IntNullableFilter | Int | Null Yes
timePlayed IntNullableFilter | Int | Null Yes
totalDamageDealt IntNullableFilter | Int | Null Yes
totalDamageDealtToChampions IntNullableFilter | Int | Null Yes
totalDamageShieldedOnTeammates IntNullableFilter | Int | Null Yes
totalDamageTaken IntNullableFilter | Int | Null Yes
totalHeal IntNullableFilter | Int | Null Yes
totalHealsOnTeammates IntNullableFilter | Int | Null Yes
totalMinionsKilled IntNullableFilter | Int | Null Yes
totalTimeCCDealt IntNullableFilter | Int | Null Yes
totalTimeSpentDead IntNullableFilter | Int | Null Yes
totalUnitsHealed IntNullableFilter | Int | Null Yes
tripleKills IntNullableFilter | Int | Null Yes
trueDamageDealt IntNullableFilter | Int | Null Yes
trueDamageDealtToChampions IntNullableFilter | Int | Null Yes
trueDamageTaken IntNullableFilter | Int | Null Yes
turretsKilled IntNullableFilter | Int | Null Yes
turretTakedowns IntNullableFilter | Int | Null Yes
turretsLost IntNullableFilter | Int | Null Yes
unrealKills IntNullableFilter | Int | Null Yes
visionScore IntNullableFilter | Int | Null Yes
visionWardsBoughtInGame IntNullableFilter | Int | Null Yes
wardsKilled IntNullableFilter | Int | Null Yes
wardsPlaced IntNullableFilter | Int | Null Yes
win BoolFilter | Boolean No

TeamUpsertWithWhereUniqueWithoutGameInput

Name Type Nullable
where TeamWhereUniqueInput No
update TeamUpdateWithoutGameInput | TeamUncheckedUpdateWithoutGameInput No
create TeamCreateWithoutGameInput | TeamUncheckedCreateWithoutGameInput No

TeamUpdateWithWhereUniqueWithoutGameInput

Name Type Nullable
where TeamWhereUniqueInput No
data TeamUpdateWithoutGameInput | TeamUncheckedUpdateWithoutGameInput No

TeamUpdateManyWithWhereWithoutGameInput

Name Type Nullable
where TeamScalarWhereInput No
data TeamUpdateManyMutationInput | TeamUncheckedUpdateManyWithoutFrom_Team_gameInput No

TeamScalarWhereInput

Name Type Nullable
AND TeamScalarWhereInput | TeamScalarWhereInput[] No
OR TeamScalarWhereInput[] No
NOT TeamScalarWhereInput | TeamScalarWhereInput[] No
id StringFilter | String No
gameId StringNullableFilter | String | Null Yes
teamId IntNullableFilter | Int | Null Yes
teamMatchId StringFilter | String No
win BoolFilter | Boolean No

TeamCreateWithoutObjectivesInput

Name Type Nullable
id String No
pickBan PickBanCreateNestedManyWithoutTeamInput No
game GameCreateNestedOneWithoutFrom_Team_gameInput No
players PlayerCreateNestedManyWithoutTeamsInput No
teamId Int | Null Yes
teamMatchId String No
win Boolean No
from_Game_blueTeam GameCreateNestedManyWithoutBlueTeamInput No
from_Game_redTeam GameCreateNestedManyWithoutRedTeamInput No

TeamUncheckedCreateWithoutObjectivesInput

Name Type Nullable
id String No
pickBan PickBanUncheckedCreateNestedManyWithoutTeamInput No
gameId String | Null Yes
players PlayerUncheckedCreateNestedManyWithoutTeamsInput No
teamId Int | Null Yes
teamMatchId String No
win Boolean No
from_Game_blueTeam GameUncheckedCreateNestedManyWithoutBlueTeamInput No
from_Game_redTeam GameUncheckedCreateNestedManyWithoutRedTeamInput No

TeamCreateOrConnectWithoutObjectivesInput

Name Type Nullable
where TeamWhereUniqueInput No
create TeamCreateWithoutObjectivesInput | TeamUncheckedCreateWithoutObjectivesInput No


TeamUpdateWithoutObjectivesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
pickBan PickBanUpdateManyWithoutTeamInput No
game GameUpdateOneWithoutFrom_Team_gameInput No
players PlayerUpdateManyWithoutTeamsInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
teamMatchId String | StringFieldUpdateOperationsInput No
win Boolean | BoolFieldUpdateOperationsInput No
from_Game_blueTeam GameUpdateManyWithoutBlueTeamInput No
from_Game_redTeam GameUpdateManyWithoutRedTeamInput No

TeamUncheckedUpdateWithoutObjectivesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
pickBan PickBanUncheckedUpdateManyWithoutTeamInput No
gameId String | NullableStringFieldUpdateOperationsInput | Null Yes
players PlayerUncheckedUpdateManyWithoutTeamsInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
teamMatchId String | StringFieldUpdateOperationsInput No
win Boolean | BoolFieldUpdateOperationsInput No
from_Game_blueTeam GameUncheckedUpdateManyWithoutBlueTeamInput No
from_Game_redTeam GameUncheckedUpdateManyWithoutRedTeamInput No

TeamCreateWithoutPickBanInput

Name Type Nullable
id String No
game GameCreateNestedOneWithoutFrom_Team_gameInput No
players PlayerCreateNestedManyWithoutTeamsInput No
objectives ObjectiveCreateNestedManyWithoutTeamInput No
teamId Int | Null Yes
teamMatchId String No
win Boolean No
from_Game_blueTeam GameCreateNestedManyWithoutBlueTeamInput No
from_Game_redTeam GameCreateNestedManyWithoutRedTeamInput No

TeamUncheckedCreateWithoutPickBanInput

Name Type Nullable
id String No
gameId String | Null Yes
players PlayerUncheckedCreateNestedManyWithoutTeamsInput No
objectives ObjectiveUncheckedCreateNestedManyWithoutTeamInput No
teamId Int | Null Yes
teamMatchId String No
win Boolean No
from_Game_blueTeam GameUncheckedCreateNestedManyWithoutBlueTeamInput No
from_Game_redTeam GameUncheckedCreateNestedManyWithoutRedTeamInput No

TeamCreateOrConnectWithoutPickBanInput

Name Type Nullable
where TeamWhereUniqueInput No
create TeamCreateWithoutPickBanInput | TeamUncheckedCreateWithoutPickBanInput No


TeamUpdateWithoutPickBanInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
game GameUpdateOneWithoutFrom_Team_gameInput No
players PlayerUpdateManyWithoutTeamsInput No
objectives ObjectiveUpdateManyWithoutTeamInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
teamMatchId String | StringFieldUpdateOperationsInput No
win Boolean | BoolFieldUpdateOperationsInput No
from_Game_blueTeam GameUpdateManyWithoutBlueTeamInput No
from_Game_redTeam GameUpdateManyWithoutRedTeamInput No

TeamUncheckedUpdateWithoutPickBanInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
gameId String | NullableStringFieldUpdateOperationsInput | Null Yes
players PlayerUncheckedUpdateManyWithoutTeamsInput No
objectives ObjectiveUncheckedUpdateManyWithoutTeamInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
teamMatchId String | StringFieldUpdateOperationsInput No
win Boolean | BoolFieldUpdateOperationsInput No
from_Game_blueTeam GameUncheckedUpdateManyWithoutBlueTeamInput No
from_Game_redTeam GameUncheckedUpdateManyWithoutRedTeamInput No

PlayerKillCreateWithoutKillerInput

Name Type Nullable
id String No
victim PlayerCreateNestedManyWithoutDeathsInput No

PlayerKillUncheckedCreateWithoutKillerInput

Name Type Nullable
id String No
victim PlayerUncheckedCreateNestedManyWithoutDeathsInput No

PlayerKillCreateOrConnectWithoutKillerInput

Name Type Nullable
where PlayerKillWhereUniqueInput No
create PlayerKillCreateWithoutKillerInput | PlayerKillUncheckedCreateWithoutKillerInput No

PlayerKillCreateWithoutVictimInput

Name Type Nullable
id String No
killer PlayerCreateNestedManyWithoutKillsInput No

PlayerKillUncheckedCreateWithoutVictimInput

Name Type Nullable
id String No
killer PlayerUncheckedCreateNestedManyWithoutKillsInput No

PlayerKillCreateOrConnectWithoutVictimInput

Name Type Nullable
where PlayerKillWhereUniqueInput No
create PlayerKillCreateWithoutVictimInput | PlayerKillUncheckedCreateWithoutVictimInput No

TeamCreateWithoutPlayersInput

Name Type Nullable
id String No
pickBan PickBanCreateNestedManyWithoutTeamInput No
game GameCreateNestedOneWithoutFrom_Team_gameInput No
objectives ObjectiveCreateNestedManyWithoutTeamInput No
teamId Int | Null Yes
teamMatchId String No
win Boolean No
from_Game_blueTeam GameCreateNestedManyWithoutBlueTeamInput No
from_Game_redTeam GameCreateNestedManyWithoutRedTeamInput No

TeamUncheckedCreateWithoutPlayersInput

Name Type Nullable
id String No
pickBan PickBanUncheckedCreateNestedManyWithoutTeamInput No
gameId String | Null Yes
objectives ObjectiveUncheckedCreateNestedManyWithoutTeamInput No
teamId Int | Null Yes
teamMatchId String No
win Boolean No
from_Game_blueTeam GameUncheckedCreateNestedManyWithoutBlueTeamInput No
from_Game_redTeam GameUncheckedCreateNestedManyWithoutRedTeamInput No

TeamCreateOrConnectWithoutPlayersInput

Name Type Nullable
where TeamWhereUniqueInput No
create TeamCreateWithoutPlayersInput | TeamUncheckedCreateWithoutPlayersInput No

ProfileCreateWithoutPlayerInput

Name Type Nullable
id String No
update Boolean No
lastUpdate DateTime No
kills Int | Null Yes
deaths Int | Null Yes
assists Int | Null Yes
kda String No
winRate String No
csPerMinute String No
damagePerMinute String No
killsPerMinute String No
goldPerMinute String No
averageGameTime String No
averageTimeSpentDead String No
totalGameTime String No
activity ActivityCreateNestedManyWithoutProfileInput No
championWinrate ChampionWinrateCreateNestedManyWithoutProfileInput No
duos DuoCreateNestedManyWithoutProfileInput No

ProfileUncheckedCreateWithoutPlayerInput

Name Type Nullable
id String No
update Boolean No
lastUpdate DateTime No
kills Int | Null Yes
deaths Int | Null Yes
assists Int | Null Yes
kda String No
winRate String No
csPerMinute String No
damagePerMinute String No
killsPerMinute String No
goldPerMinute String No
averageGameTime String No
averageTimeSpentDead String No
totalGameTime String No
activity ActivityUncheckedCreateNestedManyWithoutProfileInput No
championWinrate ChampionWinrateUncheckedCreateNestedManyWithoutProfileInput No
duos DuoUncheckedCreateNestedManyWithoutProfileInput No

ProfileCreateOrConnectWithoutPlayerInput

Name Type Nullable
where ProfileWhereUniqueInput No
create ProfileCreateWithoutPlayerInput | ProfileUncheckedCreateWithoutPlayerInput No

TeamMonsterKillCreateWithoutKillerInput

Name Type Nullable
id String No
type String No
subType String No

TeamMonsterKillUncheckedCreateWithoutKillerInput

Name Type Nullable
id String No
type String No
subType String No

TeamMonsterKillCreateOrConnectWithoutKillerInput

Name Type Nullable
where TeamMonsterKillWhereUniqueInput No
create TeamMonsterKillCreateWithoutKillerInput | TeamMonsterKillUncheckedCreateWithoutKillerInput No

TeamBuildingKillCreateWithoutKillerInput

Name Type Nullable
id String No
type String No
lane String No
side String No
towerLocation String No

TeamBuildingKillUncheckedCreateWithoutKillerInput

Name Type Nullable
id String No
type String No
lane String No
side String No
towerLocation String No

TeamBuildingKillCreateOrConnectWithoutKillerInput

Name Type Nullable
where TeamBuildingKillWhereUniqueInput No
create TeamBuildingKillCreateWithoutKillerInput | TeamBuildingKillUncheckedCreateWithoutKillerInput No

PlayerItemEventCreateWithoutPlayerInput

Name Type Nullable
id String No
type String No
itemId Int | Null Yes
name String No
undoId Int | Null Yes

PlayerItemEventUncheckedCreateWithoutPlayerInput

Name Type Nullable
id String No
type String No
itemId Int | Null Yes
name String No
undoId Int | Null Yes

PlayerItemEventCreateOrConnectWithoutPlayerInput

Name Type Nullable
where PlayerItemEventWhereUniqueInput No
create PlayerItemEventCreateWithoutPlayerInput | PlayerItemEventUncheckedCreateWithoutPlayerInput No

PlayerEndOfGameStatCreateWithoutPlayerInput

Name Type Nullable
id String No
game GameCreateNestedOneWithoutFrom_PlayerEndOfGameStat_gameInput No
perks PlayerRuneCreateNestedOneWithoutPlayerEndOfGameStatInput No
items PlayerItemCreateNestedOneWithoutPlayerEndOfGameStatInput No
assists Int | Null Yes
baronKills Int | Null Yes
bountyLevel Int | Null Yes
championExperience Int | Null Yes
championLevel Int | Null Yes
championId Int | Null Yes
championName String No
championTransform Int | Null Yes
consumablesPurchased Int | Null Yes
damageDealtToBuildings Int | Null Yes
damageDealtToObjectives Int | Null Yes
damageDealtToTurrets Int | Null Yes
damageSelfMitigated Int | Null Yes
deaths Int | Null Yes
detectorWardsPlaced Int | Null Yes
doubleKills Int | Null Yes
dragonKills Int | Null Yes
firstBlood Boolean No
firstBloodAssist Boolean No
firstTowerKill Boolean No
firstTowerAssist Boolean No
gameEndedInEarlySurrender Boolean No
gameEndedInSurrender Boolean No
goldEarned Int | Null Yes
goldSpent Int | Null Yes
individualPosition String No
inhibitorKills Int | Null Yes
inhibitorTakedowns Int | Null Yes
inhibitorsLost Int | Null Yes
item0 Int | Null Yes
item1 Int | Null Yes
item2 Int | Null Yes
item3 Int | Null Yes
item4 Int | Null Yes
item5 Int | Null Yes
item6 Int | Null Yes
itemsPurchased Int | Null Yes
killingSprees Int | Null Yes
kills Int | Null Yes
lane String No
largestCriticalStrike Int | Null Yes
largestKillingSpree Int | Null Yes
largestMultiKill Int | Null Yes
longestTimeSpentLiving Int | Null Yes
magicDamageDealt Int | Null Yes
magicDamageDealtToChampions Int | Null Yes
magicDamageTaken Int | Null Yes
neutralMinionsKilled Int | Null Yes
nexusKills Int | Null Yes
nexusLost Int | Null Yes
nexusTakedowns Int | Null Yes
objectivesStolen Int | Null Yes
objectivesStolenAssists Int | Null Yes
participantId Int | Null Yes
pentaKills Int | Null Yes
physicalDamageDealt Int | Null Yes
physicalDamageDealtToChampions Int | Null Yes
physicalDamageTaken Int | Null Yes
quadraKills Int | Null Yes
riotIdName String No
riotIdTagline String No
role String No
sightWardsBoughtInGame Int | Null Yes
spell1Casts Int | Null Yes
spell2Casts Int | Null Yes
spell3Casts Int | Null Yes
spell4Casts Int | Null Yes
summoner1Casts Int | Null Yes
summoner1Id Int | Null Yes
summoner2Casts Int | Null Yes
summoner2Id Int | Null Yes
summonerLevel Int | Null Yes
summonerName String No
teamEarlySurrendered Boolean No
teamId Int | Null Yes
teamPosition String No
timeCCingOthers Int | Null Yes
timePlayed Int | Null Yes
totalDamageDealt Int | Null Yes
totalDamageDealtToChampions Int | Null Yes
totalDamageShieldedOnTeammates Int | Null Yes
totalDamageTaken Int | Null Yes
totalHeal Int | Null Yes
totalHealsOnTeammates Int | Null Yes
totalMinionsKilled Int | Null Yes
totalTimeCCDealt Int | Null Yes
totalTimeSpentDead Int | Null Yes
totalUnitsHealed Int | Null Yes
tripleKills Int | Null Yes
trueDamageDealt Int | Null Yes
trueDamageDealtToChampions Int | Null Yes
trueDamageTaken Int | Null Yes
turretsKilled Int | Null Yes
turretTakedowns Int | Null Yes
turretsLost Int | Null Yes
unrealKills Int | Null Yes
visionScore Int | Null Yes
visionWardsBoughtInGame Int | Null Yes
wardsKilled Int | Null Yes
wardsPlaced Int | Null Yes
win Boolean No

PlayerEndOfGameStatUncheckedCreateWithoutPlayerInput

Name Type Nullable
id String No
gameId String | Null Yes
perksId String | Null Yes
itemsId String | Null Yes
assists Int | Null Yes
baronKills Int | Null Yes
bountyLevel Int | Null Yes
championExperience Int | Null Yes
championLevel Int | Null Yes
championId Int | Null Yes
championName String No
championTransform Int | Null Yes
consumablesPurchased Int | Null Yes
damageDealtToBuildings Int | Null Yes
damageDealtToObjectives Int | Null Yes
damageDealtToTurrets Int | Null Yes
damageSelfMitigated Int | Null Yes
deaths Int | Null Yes
detectorWardsPlaced Int | Null Yes
doubleKills Int | Null Yes
dragonKills Int | Null Yes
firstBlood Boolean No
firstBloodAssist Boolean No
firstTowerKill Boolean No
firstTowerAssist Boolean No
gameEndedInEarlySurrender Boolean No
gameEndedInSurrender Boolean No
goldEarned Int | Null Yes
goldSpent Int | Null Yes
individualPosition String No
inhibitorKills Int | Null Yes
inhibitorTakedowns Int | Null Yes
inhibitorsLost Int | Null Yes
item0 Int | Null Yes
item1 Int | Null Yes
item2 Int | Null Yes
item3 Int | Null Yes
item4 Int | Null Yes
item5 Int | Null Yes
item6 Int | Null Yes
itemsPurchased Int | Null Yes
killingSprees Int | Null Yes
kills Int | Null Yes
lane String No
largestCriticalStrike Int | Null Yes
largestKillingSpree Int | Null Yes
largestMultiKill Int | Null Yes
longestTimeSpentLiving Int | Null Yes
magicDamageDealt Int | Null Yes
magicDamageDealtToChampions Int | Null Yes
magicDamageTaken Int | Null Yes
neutralMinionsKilled Int | Null Yes
nexusKills Int | Null Yes
nexusLost Int | Null Yes
nexusTakedowns Int | Null Yes
objectivesStolen Int | Null Yes
objectivesStolenAssists Int | Null Yes
participantId Int | Null Yes
pentaKills Int | Null Yes
physicalDamageDealt Int | Null Yes
physicalDamageDealtToChampions Int | Null Yes
physicalDamageTaken Int | Null Yes
quadraKills Int | Null Yes
riotIdName String No
riotIdTagline String No
role String No
sightWardsBoughtInGame Int | Null Yes
spell1Casts Int | Null Yes
spell2Casts Int | Null Yes
spell3Casts Int | Null Yes
spell4Casts Int | Null Yes
summoner1Casts Int | Null Yes
summoner1Id Int | Null Yes
summoner2Casts Int | Null Yes
summoner2Id Int | Null Yes
summonerLevel Int | Null Yes
summonerName String No
teamEarlySurrendered Boolean No
teamId Int | Null Yes
teamPosition String No
timeCCingOthers Int | Null Yes
timePlayed Int | Null Yes
totalDamageDealt Int | Null Yes
totalDamageDealtToChampions Int | Null Yes
totalDamageShieldedOnTeammates Int | Null Yes
totalDamageTaken Int | Null Yes
totalHeal Int | Null Yes
totalHealsOnTeammates Int | Null Yes
totalMinionsKilled Int | Null Yes
totalTimeCCDealt Int | Null Yes
totalTimeSpentDead Int | Null Yes
totalUnitsHealed Int | Null Yes
tripleKills Int | Null Yes
trueDamageDealt Int | Null Yes
trueDamageDealtToChampions Int | Null Yes
trueDamageTaken Int | Null Yes
turretsKilled Int | Null Yes
turretTakedowns Int | Null Yes
turretsLost Int | Null Yes
unrealKills Int | Null Yes
visionScore Int | Null Yes
visionWardsBoughtInGame Int | Null Yes
wardsKilled Int | Null Yes
wardsPlaced Int | Null Yes
win Boolean No

PlayerEndOfGameStatCreateOrConnectWithoutPlayerInput

Name Type Nullable
where PlayerEndOfGameStatWhereUniqueInput No
create PlayerEndOfGameStatCreateWithoutPlayerInput | PlayerEndOfGameStatUncheckedCreateWithoutPlayerInput No

PlayerEndOfGameStatCreateManyPlayerInputEnvelope

Name Type Nullable
data PlayerEndOfGameStatCreateManyPlayerInput[] No
skipDuplicates Boolean No

PlayerSnapshotCreateWithoutPlayerInput

Name Type Nullable
id String No
timestamp Float | Null Yes
currentGold Int | Null Yes
totalGold Int | Null Yes
totalGoldDiff Int | Null Yes
xp Int | Null Yes
xpDiff Int | Null Yes
level Int | Null Yes
cs Int | Null Yes
csDiff Int | Null Yes
monstersKilled Int | Null Yes
monstersKilledDiff Int | Null Yes
position PositionCreateNestedManyWithoutPlayerSnapshotInput No

PlayerSnapshotUncheckedCreateWithoutPlayerInput

Name Type Nullable
id String No
timestamp Float | Null Yes
currentGold Int | Null Yes
totalGold Int | Null Yes
totalGoldDiff Int | Null Yes
xp Int | Null Yes
xpDiff Int | Null Yes
level Int | Null Yes
cs Int | Null Yes
csDiff Int | Null Yes
monstersKilled Int | Null Yes
monstersKilledDiff Int | Null Yes
position PositionUncheckedCreateNestedManyWithoutPlayerSnapshotInput No

PlayerSnapshotCreateOrConnectWithoutPlayerInput

Name Type Nullable
where PlayerSnapshotWhereUniqueInput No
create PlayerSnapshotCreateWithoutPlayerInput | PlayerSnapshotUncheckedCreateWithoutPlayerInput No

PlayerWardEventCreateWithoutPlayerInput

Name Type Nullable
id String No
type String No
wardType PlayerWardEventWardTypeType | Null Yes

PlayerWardEventUncheckedCreateWithoutPlayerInput

Name Type Nullable
id String No
type String No
wardType PlayerWardEventWardTypeType | Null Yes

PlayerWardEventCreateOrConnectWithoutPlayerInput

Name Type Nullable
where PlayerWardEventWhereUniqueInput No
create PlayerWardEventCreateWithoutPlayerInput | PlayerWardEventUncheckedCreateWithoutPlayerInput No

PlayerSkillLevelUpEventCreateWithoutPlayerInput

Name Type Nullable
id String No
type String No
slot Int | Null Yes

PlayerSkillLevelUpEventUncheckedCreateWithoutPlayerInput

Name Type Nullable
id String No
type String No
slot Int | Null Yes

PlayerSkillLevelUpEventCreateOrConnectWithoutPlayerInput

Name Type Nullable
where PlayerSkillLevelUpEventWhereUniqueInput No
create PlayerSkillLevelUpEventCreateWithoutPlayerInput | PlayerSkillLevelUpEventUncheckedCreateWithoutPlayerInput No


PlayerKillUpdateWithWhereUniqueWithoutKillerInput

Name Type Nullable
where PlayerKillWhereUniqueInput No
data PlayerKillUpdateWithoutKillerInput | PlayerKillUncheckedUpdateWithoutKillerInput No

PlayerKillUpdateManyWithWhereWithoutKillerInput

Name Type Nullable
where PlayerKillScalarWhereInput No
data PlayerKillUpdateManyMutationInput | PlayerKillUncheckedUpdateManyWithoutKillsInput No



PlayerKillUpdateWithWhereUniqueWithoutVictimInput

Name Type Nullable
where PlayerKillWhereUniqueInput No
data PlayerKillUpdateWithoutVictimInput | PlayerKillUncheckedUpdateWithoutVictimInput No

PlayerKillUpdateManyWithWhereWithoutVictimInput

Name Type Nullable
where PlayerKillScalarWhereInput No
data PlayerKillUpdateManyMutationInput | PlayerKillUncheckedUpdateManyWithoutDeathsInput No

TeamUpsertWithWhereUniqueWithoutPlayersInput

Name Type Nullable
where TeamWhereUniqueInput No
update TeamUpdateWithoutPlayersInput | TeamUncheckedUpdateWithoutPlayersInput No
create TeamCreateWithoutPlayersInput | TeamUncheckedCreateWithoutPlayersInput No

TeamUpdateWithWhereUniqueWithoutPlayersInput

Name Type Nullable
where TeamWhereUniqueInput No
data TeamUpdateWithoutPlayersInput | TeamUncheckedUpdateWithoutPlayersInput No

TeamUpdateManyWithWhereWithoutPlayersInput

Name Type Nullable
where TeamScalarWhereInput No
data TeamUpdateManyMutationInput | TeamUncheckedUpdateManyWithoutTeamsInput No


ProfileUpdateWithoutPlayerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
update Boolean | BoolFieldUpdateOperationsInput No
lastUpdate DateTime | DateTimeFieldUpdateOperationsInput No
kills Int | NullableIntFieldUpdateOperationsInput | Null Yes
deaths Int | NullableIntFieldUpdateOperationsInput | Null Yes
assists Int | NullableIntFieldUpdateOperationsInput | Null Yes
kda String | StringFieldUpdateOperationsInput No
winRate String | StringFieldUpdateOperationsInput No
csPerMinute String | StringFieldUpdateOperationsInput No
damagePerMinute String | StringFieldUpdateOperationsInput No
killsPerMinute String | StringFieldUpdateOperationsInput No
goldPerMinute String | StringFieldUpdateOperationsInput No
averageGameTime String | StringFieldUpdateOperationsInput No
averageTimeSpentDead String | StringFieldUpdateOperationsInput No
totalGameTime String | StringFieldUpdateOperationsInput No
activity ActivityUpdateManyWithoutProfileInput No
championWinrate ChampionWinrateUpdateManyWithoutProfileInput No
duos DuoUpdateManyWithoutProfileInput No

ProfileUncheckedUpdateWithoutPlayerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
update Boolean | BoolFieldUpdateOperationsInput No
lastUpdate DateTime | DateTimeFieldUpdateOperationsInput No
kills Int | NullableIntFieldUpdateOperationsInput | Null Yes
deaths Int | NullableIntFieldUpdateOperationsInput | Null Yes
assists Int | NullableIntFieldUpdateOperationsInput | Null Yes
kda String | StringFieldUpdateOperationsInput No
winRate String | StringFieldUpdateOperationsInput No
csPerMinute String | StringFieldUpdateOperationsInput No
damagePerMinute String | StringFieldUpdateOperationsInput No
killsPerMinute String | StringFieldUpdateOperationsInput No
goldPerMinute String | StringFieldUpdateOperationsInput No
averageGameTime String | StringFieldUpdateOperationsInput No
averageTimeSpentDead String | StringFieldUpdateOperationsInput No
totalGameTime String | StringFieldUpdateOperationsInput No
activity ActivityUncheckedUpdateManyWithoutProfileInput No
championWinrate ChampionWinrateUncheckedUpdateManyWithoutProfileInput No
duos DuoUncheckedUpdateManyWithoutProfileInput No


TeamMonsterKillUpdateWithWhereUniqueWithoutKillerInput

Name Type Nullable
where TeamMonsterKillWhereUniqueInput No
data TeamMonsterKillUpdateWithoutKillerInput | TeamMonsterKillUncheckedUpdateWithoutKillerInput No

TeamMonsterKillUpdateManyWithWhereWithoutKillerInput

Name Type Nullable
where TeamMonsterKillScalarWhereInput No
data TeamMonsterKillUpdateManyMutationInput | TeamMonsterKillUncheckedUpdateManyWithoutMonsterKillsInput No

TeamMonsterKillScalarWhereInput

Name Type Nullable
AND TeamMonsterKillScalarWhereInput | TeamMonsterKillScalarWhereInput[] No
OR TeamMonsterKillScalarWhereInput[] No
NOT TeamMonsterKillScalarWhereInput | TeamMonsterKillScalarWhereInput[] No
id StringFilter | String No
type StringFilter | String No
subType StringFilter | String No


TeamBuildingKillUpdateWithWhereUniqueWithoutKillerInput

Name Type Nullable
where TeamBuildingKillWhereUniqueInput No
data TeamBuildingKillUpdateWithoutKillerInput | TeamBuildingKillUncheckedUpdateWithoutKillerInput No

TeamBuildingKillUpdateManyWithWhereWithoutKillerInput

Name Type Nullable
where TeamBuildingKillScalarWhereInput No
data TeamBuildingKillUpdateManyMutationInput | TeamBuildingKillUncheckedUpdateManyWithoutBuildingKillsInput No

TeamBuildingKillScalarWhereInput

Name Type Nullable
AND TeamBuildingKillScalarWhereInput | TeamBuildingKillScalarWhereInput[] No
OR TeamBuildingKillScalarWhereInput[] No
NOT TeamBuildingKillScalarWhereInput | TeamBuildingKillScalarWhereInput[] No
id StringFilter | String No
type StringFilter | String No
lane StringFilter | String No
side StringFilter | String No
towerLocation StringFilter | String No


PlayerItemEventUpdateWithWhereUniqueWithoutPlayerInput

Name Type Nullable
where PlayerItemEventWhereUniqueInput No
data PlayerItemEventUpdateWithoutPlayerInput | PlayerItemEventUncheckedUpdateWithoutPlayerInput No

PlayerItemEventUpdateManyWithWhereWithoutPlayerInput

Name Type Nullable
where PlayerItemEventScalarWhereInput No
data PlayerItemEventUpdateManyMutationInput | PlayerItemEventUncheckedUpdateManyWithoutItemEventInput No

PlayerItemEventScalarWhereInput

Name Type Nullable
AND PlayerItemEventScalarWhereInput | PlayerItemEventScalarWhereInput[] No
OR PlayerItemEventScalarWhereInput[] No
NOT PlayerItemEventScalarWhereInput | PlayerItemEventScalarWhereInput[] No
id StringFilter | String No
type StringFilter | String No
itemId IntNullableFilter | Int | Null Yes
name StringFilter | String No
undoId IntNullableFilter | Int | Null Yes


PlayerEndOfGameStatUpdateWithWhereUniqueWithoutPlayerInput

Name Type Nullable
where PlayerEndOfGameStatWhereUniqueInput No
data PlayerEndOfGameStatUpdateWithoutPlayerInput | PlayerEndOfGameStatUncheckedUpdateWithoutPlayerInput No

PlayerEndOfGameStatUpdateManyWithWhereWithoutPlayerInput

Name Type Nullable
where PlayerEndOfGameStatScalarWhereInput No
data PlayerEndOfGameStatUpdateManyMutationInput | PlayerEndOfGameStatUncheckedUpdateManyWithoutEndOfGameStatsInput No


PlayerSnapshotUpdateWithWhereUniqueWithoutPlayerInput

Name Type Nullable
where PlayerSnapshotWhereUniqueInput No
data PlayerSnapshotUpdateWithoutPlayerInput | PlayerSnapshotUncheckedUpdateWithoutPlayerInput No

PlayerSnapshotUpdateManyWithWhereWithoutPlayerInput

Name Type Nullable
where PlayerSnapshotScalarWhereInput No
data PlayerSnapshotUpdateManyMutationInput | PlayerSnapshotUncheckedUpdateManyWithoutSnapshotsInput No

PlayerSnapshotScalarWhereInput

Name Type Nullable
AND PlayerSnapshotScalarWhereInput | PlayerSnapshotScalarWhereInput[] No
OR PlayerSnapshotScalarWhereInput[] No
NOT PlayerSnapshotScalarWhereInput | PlayerSnapshotScalarWhereInput[] No
id StringFilter | String No
timestamp FloatNullableFilter | Float | Null Yes
currentGold IntNullableFilter | Int | Null Yes
totalGold IntNullableFilter | Int | Null Yes
totalGoldDiff IntNullableFilter | Int | Null Yes
xp IntNullableFilter | Int | Null Yes
xpDiff IntNullableFilter | Int | Null Yes
level IntNullableFilter | Int | Null Yes
cs IntNullableFilter | Int | Null Yes
csDiff IntNullableFilter | Int | Null Yes
monstersKilled IntNullableFilter | Int | Null Yes
monstersKilledDiff IntNullableFilter | Int | Null Yes


PlayerWardEventUpdateWithWhereUniqueWithoutPlayerInput

Name Type Nullable
where PlayerWardEventWhereUniqueInput No
data PlayerWardEventUpdateWithoutPlayerInput | PlayerWardEventUncheckedUpdateWithoutPlayerInput No

PlayerWardEventUpdateManyWithWhereWithoutPlayerInput

Name Type Nullable
where PlayerWardEventScalarWhereInput No
data PlayerWardEventUpdateManyMutationInput | PlayerWardEventUncheckedUpdateManyWithoutWardEventsInput No



PlayerSkillLevelUpEventUpdateWithWhereUniqueWithoutPlayerInput

Name Type Nullable
where PlayerSkillLevelUpEventWhereUniqueInput No
data PlayerSkillLevelUpEventUpdateWithoutPlayerInput | PlayerSkillLevelUpEventUncheckedUpdateWithoutPlayerInput No



PlayerCreateWithoutEndOfGameStatsInput

Name Type Nullable
id String No
puuid String No
accountId String No
platformId String No
summonerId String No
summonerName String No
summonerLevel Int | Null Yes
profileIconId Int | Null Yes
revisionDate String No
kills PlayerKillCreateNestedManyWithoutKillerInput No
deaths PlayerKillCreateNestedManyWithoutVictimInput No
teams TeamCreateNestedManyWithoutPlayersInput No
profile ProfileCreateNestedOneWithoutPlayerInput No
monsterKills TeamMonsterKillCreateNestedManyWithoutKillerInput No
buildingKills TeamBuildingKillCreateNestedManyWithoutKillerInput No
itemEvent PlayerItemEventCreateNestedManyWithoutPlayerInput No
snapshots PlayerSnapshotCreateNestedManyWithoutPlayerInput No
wardEvents PlayerWardEventCreateNestedManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventCreateNestedManyWithoutPlayerInput No

PlayerUncheckedCreateWithoutEndOfGameStatsInput

Name Type Nullable
id String No
puuid String No
accountId String No
platformId String No
summonerId String No
summonerName String No
summonerLevel Int | Null Yes
profileIconId Int | Null Yes
revisionDate String No
kills PlayerKillUncheckedCreateNestedManyWithoutKillerInput No
deaths PlayerKillUncheckedCreateNestedManyWithoutVictimInput No
teams TeamUncheckedCreateNestedManyWithoutPlayersInput No
profileId String | Null Yes
monsterKills TeamMonsterKillUncheckedCreateNestedManyWithoutKillerInput No
buildingKills TeamBuildingKillUncheckedCreateNestedManyWithoutKillerInput No
itemEvent PlayerItemEventUncheckedCreateNestedManyWithoutPlayerInput No
snapshots PlayerSnapshotUncheckedCreateNestedManyWithoutPlayerInput No
wardEvents PlayerWardEventUncheckedCreateNestedManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventUncheckedCreateNestedManyWithoutPlayerInput No

PlayerCreateOrConnectWithoutEndOfGameStatsInput

Name Type Nullable
where PlayerWhereUniqueInput No
create PlayerCreateWithoutEndOfGameStatsInput | PlayerUncheckedCreateWithoutEndOfGameStatsInput No

GameCreateWithoutFrom_PlayerEndOfGameStat_gameInput

Name Type Nullable
id String No
matchId String No
gameId String No
gameCreation String No
gameStartTimestamp String No
gameEndTimestamp String No
duration Int | Null Yes
start String No
gameVersion String No
blueTeam TeamCreateNestedOneWithoutFrom_Game_blueTeamInput No
redTeam TeamCreateNestedOneWithoutFrom_Game_redTeamInput No
source SourceCreateNestedManyWithoutGameInput No
tournament String No
gameInSeries Int | Null Yes
vod String No
platformId String No
from_Team_game TeamCreateNestedManyWithoutGameInput No

GameUncheckedCreateWithoutFrom_PlayerEndOfGameStat_gameInput

Name Type Nullable
id String No
matchId String No
gameId String No
gameCreation String No
gameStartTimestamp String No
gameEndTimestamp String No
duration Int | Null Yes
start String No
gameVersion String No
blueTeamId String | Null Yes
redTeamId String | Null Yes
source SourceUncheckedCreateNestedManyWithoutGameInput No
tournament String No
gameInSeries Int | Null Yes
vod String No
platformId String No
from_Team_game TeamUncheckedCreateNestedManyWithoutGameInput No

GameCreateOrConnectWithoutFrom_PlayerEndOfGameStat_gameInput

Name Type Nullable
where GameWhereUniqueInput No
create GameCreateWithoutFrom_PlayerEndOfGameStat_gameInput | GameUncheckedCreateWithoutFrom_PlayerEndOfGameStat_gameInput No

PlayerRuneCreateWithoutPlayerEndOfGameStatInput

Name Type Nullable
id String No
runeStyle RuneStyleCreateNestedManyWithoutPlayerRunesInput No
defense Int | Null Yes
flex Int | Null Yes
offense Int | Null Yes

PlayerRuneUncheckedCreateWithoutPlayerEndOfGameStatInput

Name Type Nullable
id String No
runeStyle RuneStyleUncheckedCreateNestedManyWithoutPlayerRunesInput No
defense Int | Null Yes
flex Int | Null Yes
offense Int | Null Yes

PlayerRuneCreateOrConnectWithoutPlayerEndOfGameStatInput

Name Type Nullable
where PlayerRuneWhereUniqueInput No
create PlayerRuneCreateWithoutPlayerEndOfGameStatInput | PlayerRuneUncheckedCreateWithoutPlayerEndOfGameStatInput No

PlayerItemCreateWithoutPlayerEndOfGameStatInput

Name Type Nullable
id String No
slot Int | Null Yes
itemId Int | Null Yes
name String No

PlayerItemUncheckedCreateWithoutPlayerEndOfGameStatInput

Name Type Nullable
id String No
slot Int | Null Yes
itemId Int | Null Yes
name String No

PlayerItemCreateOrConnectWithoutPlayerEndOfGameStatInput

Name Type Nullable
where PlayerItemWhereUniqueInput No
create PlayerItemCreateWithoutPlayerEndOfGameStatInput | PlayerItemUncheckedCreateWithoutPlayerEndOfGameStatInput No


PlayerUpdateWithoutEndOfGameStatsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
puuid String | StringFieldUpdateOperationsInput No
accountId String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
summonerId String | StringFieldUpdateOperationsInput No
summonerName String | StringFieldUpdateOperationsInput No
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
profileIconId Int | NullableIntFieldUpdateOperationsInput | Null Yes
revisionDate String | StringFieldUpdateOperationsInput No
kills PlayerKillUpdateManyWithoutKillerInput No
deaths PlayerKillUpdateManyWithoutVictimInput No
teams TeamUpdateManyWithoutPlayersInput No
profile ProfileUpdateOneWithoutPlayerInput No
monsterKills TeamMonsterKillUpdateManyWithoutKillerInput No
buildingKills TeamBuildingKillUpdateManyWithoutKillerInput No
itemEvent PlayerItemEventUpdateManyWithoutPlayerInput No
snapshots PlayerSnapshotUpdateManyWithoutPlayerInput No
wardEvents PlayerWardEventUpdateManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventUpdateManyWithoutPlayerInput No

PlayerUncheckedUpdateWithoutEndOfGameStatsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
puuid String | StringFieldUpdateOperationsInput No
accountId String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
summonerId String | StringFieldUpdateOperationsInput No
summonerName String | StringFieldUpdateOperationsInput No
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
profileIconId Int | NullableIntFieldUpdateOperationsInput | Null Yes
revisionDate String | StringFieldUpdateOperationsInput No
kills PlayerKillUncheckedUpdateManyWithoutKillerInput No
deaths PlayerKillUncheckedUpdateManyWithoutVictimInput No
teams TeamUncheckedUpdateManyWithoutPlayersInput No
profileId String | NullableStringFieldUpdateOperationsInput | Null Yes
monsterKills TeamMonsterKillUncheckedUpdateManyWithoutKillerInput No
buildingKills TeamBuildingKillUncheckedUpdateManyWithoutKillerInput No
itemEvent PlayerItemEventUncheckedUpdateManyWithoutPlayerInput No
snapshots PlayerSnapshotUncheckedUpdateManyWithoutPlayerInput No
wardEvents PlayerWardEventUncheckedUpdateManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventUncheckedUpdateManyWithoutPlayerInput No


GameUpdateWithoutFrom_PlayerEndOfGameStat_gameInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
matchId String | StringFieldUpdateOperationsInput No
gameId String | StringFieldUpdateOperationsInput No
gameCreation String | StringFieldUpdateOperationsInput No
gameStartTimestamp String | StringFieldUpdateOperationsInput No
gameEndTimestamp String | StringFieldUpdateOperationsInput No
duration Int | NullableIntFieldUpdateOperationsInput | Null Yes
start String | StringFieldUpdateOperationsInput No
gameVersion String | StringFieldUpdateOperationsInput No
blueTeam TeamUpdateOneWithoutFrom_Game_blueTeamInput No
redTeam TeamUpdateOneWithoutFrom_Game_redTeamInput No
source SourceUpdateManyWithoutGameInput No
tournament String | StringFieldUpdateOperationsInput No
gameInSeries Int | NullableIntFieldUpdateOperationsInput | Null Yes
vod String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
from_Team_game TeamUpdateManyWithoutGameInput No

GameUncheckedUpdateWithoutFrom_PlayerEndOfGameStat_gameInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
matchId String | StringFieldUpdateOperationsInput No
gameId String | StringFieldUpdateOperationsInput No
gameCreation String | StringFieldUpdateOperationsInput No
gameStartTimestamp String | StringFieldUpdateOperationsInput No
gameEndTimestamp String | StringFieldUpdateOperationsInput No
duration Int | NullableIntFieldUpdateOperationsInput | Null Yes
start String | StringFieldUpdateOperationsInput No
gameVersion String | StringFieldUpdateOperationsInput No
blueTeamId String | NullableStringFieldUpdateOperationsInput | Null Yes
redTeamId String | NullableStringFieldUpdateOperationsInput | Null Yes
source SourceUncheckedUpdateManyWithoutGameInput No
tournament String | StringFieldUpdateOperationsInput No
gameInSeries Int | NullableIntFieldUpdateOperationsInput | Null Yes
vod String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
from_Team_game TeamUncheckedUpdateManyWithoutGameInput No


PlayerRuneUpdateWithoutPlayerEndOfGameStatInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
runeStyle RuneStyleUpdateManyWithoutPlayerRunesInput No
defense Int | NullableIntFieldUpdateOperationsInput | Null Yes
flex Int | NullableIntFieldUpdateOperationsInput | Null Yes
offense Int | NullableIntFieldUpdateOperationsInput | Null Yes

PlayerRuneUncheckedUpdateWithoutPlayerEndOfGameStatInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
runeStyle RuneStyleUncheckedUpdateManyWithoutPlayerRunesInput No
defense Int | NullableIntFieldUpdateOperationsInput | Null Yes
flex Int | NullableIntFieldUpdateOperationsInput | Null Yes
offense Int | NullableIntFieldUpdateOperationsInput | Null Yes


PlayerItemUpdateWithoutPlayerEndOfGameStatInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
slot Int | NullableIntFieldUpdateOperationsInput | Null Yes
itemId Int | NullableIntFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No

PlayerItemUncheckedUpdateWithoutPlayerEndOfGameStatInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
slot Int | NullableIntFieldUpdateOperationsInput | Null Yes
itemId Int | NullableIntFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No

PlayerEndOfGameStatCreateWithoutItemsInput

Name Type Nullable
id String No
player PlayerCreateNestedOneWithoutEndOfGameStatsInput No
game GameCreateNestedOneWithoutFrom_PlayerEndOfGameStat_gameInput No
perks PlayerRuneCreateNestedOneWithoutPlayerEndOfGameStatInput No
assists Int | Null Yes
baronKills Int | Null Yes
bountyLevel Int | Null Yes
championExperience Int | Null Yes
championLevel Int | Null Yes
championId Int | Null Yes
championName String No
championTransform Int | Null Yes
consumablesPurchased Int | Null Yes
damageDealtToBuildings Int | Null Yes
damageDealtToObjectives Int | Null Yes
damageDealtToTurrets Int | Null Yes
damageSelfMitigated Int | Null Yes
deaths Int | Null Yes
detectorWardsPlaced Int | Null Yes
doubleKills Int | Null Yes
dragonKills Int | Null Yes
firstBlood Boolean No
firstBloodAssist Boolean No
firstTowerKill Boolean No
firstTowerAssist Boolean No
gameEndedInEarlySurrender Boolean No
gameEndedInSurrender Boolean No
goldEarned Int | Null Yes
goldSpent Int | Null Yes
individualPosition String No
inhibitorKills Int | Null Yes
inhibitorTakedowns Int | Null Yes
inhibitorsLost Int | Null Yes
item0 Int | Null Yes
item1 Int | Null Yes
item2 Int | Null Yes
item3 Int | Null Yes
item4 Int | Null Yes
item5 Int | Null Yes
item6 Int | Null Yes
itemsPurchased Int | Null Yes
killingSprees Int | Null Yes
kills Int | Null Yes
lane String No
largestCriticalStrike Int | Null Yes
largestKillingSpree Int | Null Yes
largestMultiKill Int | Null Yes
longestTimeSpentLiving Int | Null Yes
magicDamageDealt Int | Null Yes
magicDamageDealtToChampions Int | Null Yes
magicDamageTaken Int | Null Yes
neutralMinionsKilled Int | Null Yes
nexusKills Int | Null Yes
nexusLost Int | Null Yes
nexusTakedowns Int | Null Yes
objectivesStolen Int | Null Yes
objectivesStolenAssists Int | Null Yes
participantId Int | Null Yes
pentaKills Int | Null Yes
physicalDamageDealt Int | Null Yes
physicalDamageDealtToChampions Int | Null Yes
physicalDamageTaken Int | Null Yes
quadraKills Int | Null Yes
riotIdName String No
riotIdTagline String No
role String No
sightWardsBoughtInGame Int | Null Yes
spell1Casts Int | Null Yes
spell2Casts Int | Null Yes
spell3Casts Int | Null Yes
spell4Casts Int | Null Yes
summoner1Casts Int | Null Yes
summoner1Id Int | Null Yes
summoner2Casts Int | Null Yes
summoner2Id Int | Null Yes
summonerLevel Int | Null Yes
summonerName String No
teamEarlySurrendered Boolean No
teamId Int | Null Yes
teamPosition String No
timeCCingOthers Int | Null Yes
timePlayed Int | Null Yes
totalDamageDealt Int | Null Yes
totalDamageDealtToChampions Int | Null Yes
totalDamageShieldedOnTeammates Int | Null Yes
totalDamageTaken Int | Null Yes
totalHeal Int | Null Yes
totalHealsOnTeammates Int | Null Yes
totalMinionsKilled Int | Null Yes
totalTimeCCDealt Int | Null Yes
totalTimeSpentDead Int | Null Yes
totalUnitsHealed Int | Null Yes
tripleKills Int | Null Yes
trueDamageDealt Int | Null Yes
trueDamageDealtToChampions Int | Null Yes
trueDamageTaken Int | Null Yes
turretsKilled Int | Null Yes
turretTakedowns Int | Null Yes
turretsLost Int | Null Yes
unrealKills Int | Null Yes
visionScore Int | Null Yes
visionWardsBoughtInGame Int | Null Yes
wardsKilled Int | Null Yes
wardsPlaced Int | Null Yes
win Boolean No

PlayerEndOfGameStatUncheckedCreateWithoutItemsInput

Name Type Nullable
id String No
playerId String | Null Yes
gameId String | Null Yes
perksId String | Null Yes
assists Int | Null Yes
baronKills Int | Null Yes
bountyLevel Int | Null Yes
championExperience Int | Null Yes
championLevel Int | Null Yes
championId Int | Null Yes
championName String No
championTransform Int | Null Yes
consumablesPurchased Int | Null Yes
damageDealtToBuildings Int | Null Yes
damageDealtToObjectives Int | Null Yes
damageDealtToTurrets Int | Null Yes
damageSelfMitigated Int | Null Yes
deaths Int | Null Yes
detectorWardsPlaced Int | Null Yes
doubleKills Int | Null Yes
dragonKills Int | Null Yes
firstBlood Boolean No
firstBloodAssist Boolean No
firstTowerKill Boolean No
firstTowerAssist Boolean No
gameEndedInEarlySurrender Boolean No
gameEndedInSurrender Boolean No
goldEarned Int | Null Yes
goldSpent Int | Null Yes
individualPosition String No
inhibitorKills Int | Null Yes
inhibitorTakedowns Int | Null Yes
inhibitorsLost Int | Null Yes
item0 Int | Null Yes
item1 Int | Null Yes
item2 Int | Null Yes
item3 Int | Null Yes
item4 Int | Null Yes
item5 Int | Null Yes
item6 Int | Null Yes
itemsPurchased Int | Null Yes
killingSprees Int | Null Yes
kills Int | Null Yes
lane String No
largestCriticalStrike Int | Null Yes
largestKillingSpree Int | Null Yes
largestMultiKill Int | Null Yes
longestTimeSpentLiving Int | Null Yes
magicDamageDealt Int | Null Yes
magicDamageDealtToChampions Int | Null Yes
magicDamageTaken Int | Null Yes
neutralMinionsKilled Int | Null Yes
nexusKills Int | Null Yes
nexusLost Int | Null Yes
nexusTakedowns Int | Null Yes
objectivesStolen Int | Null Yes
objectivesStolenAssists Int | Null Yes
participantId Int | Null Yes
pentaKills Int | Null Yes
physicalDamageDealt Int | Null Yes
physicalDamageDealtToChampions Int | Null Yes
physicalDamageTaken Int | Null Yes
quadraKills Int | Null Yes
riotIdName String No
riotIdTagline String No
role String No
sightWardsBoughtInGame Int | Null Yes
spell1Casts Int | Null Yes
spell2Casts Int | Null Yes
spell3Casts Int | Null Yes
spell4Casts Int | Null Yes
summoner1Casts Int | Null Yes
summoner1Id Int | Null Yes
summoner2Casts Int | Null Yes
summoner2Id Int | Null Yes
summonerLevel Int | Null Yes
summonerName String No
teamEarlySurrendered Boolean No
teamId Int | Null Yes
teamPosition String No
timeCCingOthers Int | Null Yes
timePlayed Int | Null Yes
totalDamageDealt Int | Null Yes
totalDamageDealtToChampions Int | Null Yes
totalDamageShieldedOnTeammates Int | Null Yes
totalDamageTaken Int | Null Yes
totalHeal Int | Null Yes
totalHealsOnTeammates Int | Null Yes
totalMinionsKilled Int | Null Yes
totalTimeCCDealt Int | Null Yes
totalTimeSpentDead Int | Null Yes
totalUnitsHealed Int | Null Yes
tripleKills Int | Null Yes
trueDamageDealt Int | Null Yes
trueDamageDealtToChampions Int | Null Yes
trueDamageTaken Int | Null Yes
turretsKilled Int | Null Yes
turretTakedowns Int | Null Yes
turretsLost Int | Null Yes
unrealKills Int | Null Yes
visionScore Int | Null Yes
visionWardsBoughtInGame Int | Null Yes
wardsKilled Int | Null Yes
wardsPlaced Int | Null Yes
win Boolean No

PlayerEndOfGameStatCreateOrConnectWithoutItemsInput

Name Type Nullable
where PlayerEndOfGameStatWhereUniqueInput No
create PlayerEndOfGameStatCreateWithoutItemsInput | PlayerEndOfGameStatUncheckedCreateWithoutItemsInput No

PlayerEndOfGameStatCreateManyItemsInputEnvelope

Name Type Nullable
data PlayerEndOfGameStatCreateManyItemsInput[] No
skipDuplicates Boolean No


PlayerEndOfGameStatUpdateWithWhereUniqueWithoutItemsInput

Name Type Nullable
where PlayerEndOfGameStatWhereUniqueInput No
data PlayerEndOfGameStatUpdateWithoutItemsInput | PlayerEndOfGameStatUncheckedUpdateWithoutItemsInput No

PlayerEndOfGameStatUpdateManyWithWhereWithoutItemsInput

Name Type Nullable
where PlayerEndOfGameStatScalarWhereInput No
data PlayerEndOfGameStatUpdateManyMutationInput | PlayerEndOfGameStatUncheckedUpdateManyWithoutPlayerEndOfGameStatInput No

PlayerCreateWithoutItemEventInput

Name Type Nullable
id String No
puuid String No
accountId String No
platformId String No
summonerId String No
summonerName String No
summonerLevel Int | Null Yes
profileIconId Int | Null Yes
revisionDate String No
kills PlayerKillCreateNestedManyWithoutKillerInput No
deaths PlayerKillCreateNestedManyWithoutVictimInput No
teams TeamCreateNestedManyWithoutPlayersInput No
profile ProfileCreateNestedOneWithoutPlayerInput No
monsterKills TeamMonsterKillCreateNestedManyWithoutKillerInput No
buildingKills TeamBuildingKillCreateNestedManyWithoutKillerInput No
endOfGameStats PlayerEndOfGameStatCreateNestedManyWithoutPlayerInput No
snapshots PlayerSnapshotCreateNestedManyWithoutPlayerInput No
wardEvents PlayerWardEventCreateNestedManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventCreateNestedManyWithoutPlayerInput No

PlayerUncheckedCreateWithoutItemEventInput

Name Type Nullable
id String No
puuid String No
accountId String No
platformId String No
summonerId String No
summonerName String No
summonerLevel Int | Null Yes
profileIconId Int | Null Yes
revisionDate String No
kills PlayerKillUncheckedCreateNestedManyWithoutKillerInput No
deaths PlayerKillUncheckedCreateNestedManyWithoutVictimInput No
teams TeamUncheckedCreateNestedManyWithoutPlayersInput No
profileId String | Null Yes
monsterKills TeamMonsterKillUncheckedCreateNestedManyWithoutKillerInput No
buildingKills TeamBuildingKillUncheckedCreateNestedManyWithoutKillerInput No
endOfGameStats PlayerEndOfGameStatUncheckedCreateNestedManyWithoutPlayerInput No
snapshots PlayerSnapshotUncheckedCreateNestedManyWithoutPlayerInput No
wardEvents PlayerWardEventUncheckedCreateNestedManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventUncheckedCreateNestedManyWithoutPlayerInput No

PlayerCreateOrConnectWithoutItemEventInput

Name Type Nullable
where PlayerWhereUniqueInput No
create PlayerCreateWithoutItemEventInput | PlayerUncheckedCreateWithoutItemEventInput No


PlayerUpdateWithWhereUniqueWithoutItemEventInput

Name Type Nullable
where PlayerWhereUniqueInput No
data PlayerUpdateWithoutItemEventInput | PlayerUncheckedUpdateWithoutItemEventInput No

PlayerUpdateManyWithWhereWithoutItemEventInput

Name Type Nullable
where PlayerScalarWhereInput No
data PlayerUpdateManyMutationInput | PlayerUncheckedUpdateManyWithoutPlayerInput No

PlayerScalarWhereInput

Name Type Nullable
AND PlayerScalarWhereInput | PlayerScalarWhereInput[] No
OR PlayerScalarWhereInput[] No
NOT PlayerScalarWhereInput | PlayerScalarWhereInput[] No
id StringFilter | String No
puuid StringFilter | String No
accountId StringFilter | String No
platformId StringFilter | String No
summonerId StringFilter | String No
summonerName StringFilter | String No
summonerLevel IntNullableFilter | Int | Null Yes
profileIconId IntNullableFilter | Int | Null Yes
revisionDate StringFilter | String No
profileId StringNullableFilter | String | Null Yes

PlayerCreateWithoutKillsInput

Name Type Nullable
id String No
puuid String No
accountId String No
platformId String No
summonerId String No
summonerName String No
summonerLevel Int | Null Yes
profileIconId Int | Null Yes
revisionDate String No
deaths PlayerKillCreateNestedManyWithoutVictimInput No
teams TeamCreateNestedManyWithoutPlayersInput No
profile ProfileCreateNestedOneWithoutPlayerInput No
monsterKills TeamMonsterKillCreateNestedManyWithoutKillerInput No
buildingKills TeamBuildingKillCreateNestedManyWithoutKillerInput No
itemEvent PlayerItemEventCreateNestedManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatCreateNestedManyWithoutPlayerInput No
snapshots PlayerSnapshotCreateNestedManyWithoutPlayerInput No
wardEvents PlayerWardEventCreateNestedManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventCreateNestedManyWithoutPlayerInput No

PlayerUncheckedCreateWithoutKillsInput

Name Type Nullable
id String No
puuid String No
accountId String No
platformId String No
summonerId String No
summonerName String No
summonerLevel Int | Null Yes
profileIconId Int | Null Yes
revisionDate String No
deaths PlayerKillUncheckedCreateNestedManyWithoutVictimInput No
teams TeamUncheckedCreateNestedManyWithoutPlayersInput No
profileId String | Null Yes
monsterKills TeamMonsterKillUncheckedCreateNestedManyWithoutKillerInput No
buildingKills TeamBuildingKillUncheckedCreateNestedManyWithoutKillerInput No
itemEvent PlayerItemEventUncheckedCreateNestedManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatUncheckedCreateNestedManyWithoutPlayerInput No
snapshots PlayerSnapshotUncheckedCreateNestedManyWithoutPlayerInput No
wardEvents PlayerWardEventUncheckedCreateNestedManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventUncheckedCreateNestedManyWithoutPlayerInput No

PlayerCreateOrConnectWithoutKillsInput

Name Type Nullable
where PlayerWhereUniqueInput No
create PlayerCreateWithoutKillsInput | PlayerUncheckedCreateWithoutKillsInput No

PlayerCreateWithoutDeathsInput

Name Type Nullable
id String No
puuid String No
accountId String No
platformId String No
summonerId String No
summonerName String No
summonerLevel Int | Null Yes
profileIconId Int | Null Yes
revisionDate String No
kills PlayerKillCreateNestedManyWithoutKillerInput No
teams TeamCreateNestedManyWithoutPlayersInput No
profile ProfileCreateNestedOneWithoutPlayerInput No
monsterKills TeamMonsterKillCreateNestedManyWithoutKillerInput No
buildingKills TeamBuildingKillCreateNestedManyWithoutKillerInput No
itemEvent PlayerItemEventCreateNestedManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatCreateNestedManyWithoutPlayerInput No
snapshots PlayerSnapshotCreateNestedManyWithoutPlayerInput No
wardEvents PlayerWardEventCreateNestedManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventCreateNestedManyWithoutPlayerInput No

PlayerUncheckedCreateWithoutDeathsInput

Name Type Nullable
id String No
puuid String No
accountId String No
platformId String No
summonerId String No
summonerName String No
summonerLevel Int | Null Yes
profileIconId Int | Null Yes
revisionDate String No
kills PlayerKillUncheckedCreateNestedManyWithoutKillerInput No
teams TeamUncheckedCreateNestedManyWithoutPlayersInput No
profileId String | Null Yes
monsterKills TeamMonsterKillUncheckedCreateNestedManyWithoutKillerInput No
buildingKills TeamBuildingKillUncheckedCreateNestedManyWithoutKillerInput No
itemEvent PlayerItemEventUncheckedCreateNestedManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatUncheckedCreateNestedManyWithoutPlayerInput No
snapshots PlayerSnapshotUncheckedCreateNestedManyWithoutPlayerInput No
wardEvents PlayerWardEventUncheckedCreateNestedManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventUncheckedCreateNestedManyWithoutPlayerInput No

PlayerCreateOrConnectWithoutDeathsInput

Name Type Nullable
where PlayerWhereUniqueInput No
create PlayerCreateWithoutDeathsInput | PlayerUncheckedCreateWithoutDeathsInput No


PlayerUpdateWithWhereUniqueWithoutKillsInput

Name Type Nullable
where PlayerWhereUniqueInput No
data PlayerUpdateWithoutKillsInput | PlayerUncheckedUpdateWithoutKillsInput No

PlayerUpdateManyWithWhereWithoutKillsInput

Name Type Nullable
where PlayerScalarWhereInput No
data PlayerUpdateManyMutationInput | PlayerUncheckedUpdateManyWithoutKillerInput No


PlayerUpdateWithWhereUniqueWithoutDeathsInput

Name Type Nullable
where PlayerWhereUniqueInput No
data PlayerUpdateWithoutDeathsInput | PlayerUncheckedUpdateWithoutDeathsInput No

PlayerUpdateManyWithWhereWithoutDeathsInput

Name Type Nullable
where PlayerScalarWhereInput No
data PlayerUpdateManyMutationInput | PlayerUncheckedUpdateManyWithoutVictimInput No

PlayerEndOfGameStatCreateWithoutPerksInput

Name Type Nullable
id String No
player PlayerCreateNestedOneWithoutEndOfGameStatsInput No
game GameCreateNestedOneWithoutFrom_PlayerEndOfGameStat_gameInput No
items PlayerItemCreateNestedOneWithoutPlayerEndOfGameStatInput No
assists Int | Null Yes
baronKills Int | Null Yes
bountyLevel Int | Null Yes
championExperience Int | Null Yes
championLevel Int | Null Yes
championId Int | Null Yes
championName String No
championTransform Int | Null Yes
consumablesPurchased Int | Null Yes
damageDealtToBuildings Int | Null Yes
damageDealtToObjectives Int | Null Yes
damageDealtToTurrets Int | Null Yes
damageSelfMitigated Int | Null Yes
deaths Int | Null Yes
detectorWardsPlaced Int | Null Yes
doubleKills Int | Null Yes
dragonKills Int | Null Yes
firstBlood Boolean No
firstBloodAssist Boolean No
firstTowerKill Boolean No
firstTowerAssist Boolean No
gameEndedInEarlySurrender Boolean No
gameEndedInSurrender Boolean No
goldEarned Int | Null Yes
goldSpent Int | Null Yes
individualPosition String No
inhibitorKills Int | Null Yes
inhibitorTakedowns Int | Null Yes
inhibitorsLost Int | Null Yes
item0 Int | Null Yes
item1 Int | Null Yes
item2 Int | Null Yes
item3 Int | Null Yes
item4 Int | Null Yes
item5 Int | Null Yes
item6 Int | Null Yes
itemsPurchased Int | Null Yes
killingSprees Int | Null Yes
kills Int | Null Yes
lane String No
largestCriticalStrike Int | Null Yes
largestKillingSpree Int | Null Yes
largestMultiKill Int | Null Yes
longestTimeSpentLiving Int | Null Yes
magicDamageDealt Int | Null Yes
magicDamageDealtToChampions Int | Null Yes
magicDamageTaken Int | Null Yes
neutralMinionsKilled Int | Null Yes
nexusKills Int | Null Yes
nexusLost Int | Null Yes
nexusTakedowns Int | Null Yes
objectivesStolen Int | Null Yes
objectivesStolenAssists Int | Null Yes
participantId Int | Null Yes
pentaKills Int | Null Yes
physicalDamageDealt Int | Null Yes
physicalDamageDealtToChampions Int | Null Yes
physicalDamageTaken Int | Null Yes
quadraKills Int | Null Yes
riotIdName String No
riotIdTagline String No
role String No
sightWardsBoughtInGame Int | Null Yes
spell1Casts Int | Null Yes
spell2Casts Int | Null Yes
spell3Casts Int | Null Yes
spell4Casts Int | Null Yes
summoner1Casts Int | Null Yes
summoner1Id Int | Null Yes
summoner2Casts Int | Null Yes
summoner2Id Int | Null Yes
summonerLevel Int | Null Yes
summonerName String No
teamEarlySurrendered Boolean No
teamId Int | Null Yes
teamPosition String No
timeCCingOthers Int | Null Yes
timePlayed Int | Null Yes
totalDamageDealt Int | Null Yes
totalDamageDealtToChampions Int | Null Yes
totalDamageShieldedOnTeammates Int | Null Yes
totalDamageTaken Int | Null Yes
totalHeal Int | Null Yes
totalHealsOnTeammates Int | Null Yes
totalMinionsKilled Int | Null Yes
totalTimeCCDealt Int | Null Yes
totalTimeSpentDead Int | Null Yes
totalUnitsHealed Int | Null Yes
tripleKills Int | Null Yes
trueDamageDealt Int | Null Yes
trueDamageDealtToChampions Int | Null Yes
trueDamageTaken Int | Null Yes
turretsKilled Int | Null Yes
turretTakedowns Int | Null Yes
turretsLost Int | Null Yes
unrealKills Int | Null Yes
visionScore Int | Null Yes
visionWardsBoughtInGame Int | Null Yes
wardsKilled Int | Null Yes
wardsPlaced Int | Null Yes
win Boolean No

PlayerEndOfGameStatUncheckedCreateWithoutPerksInput

Name Type Nullable
id String No
playerId String | Null Yes
gameId String | Null Yes
itemsId String | Null Yes
assists Int | Null Yes
baronKills Int | Null Yes
bountyLevel Int | Null Yes
championExperience Int | Null Yes
championLevel Int | Null Yes
championId Int | Null Yes
championName String No
championTransform Int | Null Yes
consumablesPurchased Int | Null Yes
damageDealtToBuildings Int | Null Yes
damageDealtToObjectives Int | Null Yes
damageDealtToTurrets Int | Null Yes
damageSelfMitigated Int | Null Yes
deaths Int | Null Yes
detectorWardsPlaced Int | Null Yes
doubleKills Int | Null Yes
dragonKills Int | Null Yes
firstBlood Boolean No
firstBloodAssist Boolean No
firstTowerKill Boolean No
firstTowerAssist Boolean No
gameEndedInEarlySurrender Boolean No
gameEndedInSurrender Boolean No
goldEarned Int | Null Yes
goldSpent Int | Null Yes
individualPosition String No
inhibitorKills Int | Null Yes
inhibitorTakedowns Int | Null Yes
inhibitorsLost Int | Null Yes
item0 Int | Null Yes
item1 Int | Null Yes
item2 Int | Null Yes
item3 Int | Null Yes
item4 Int | Null Yes
item5 Int | Null Yes
item6 Int | Null Yes
itemsPurchased Int | Null Yes
killingSprees Int | Null Yes
kills Int | Null Yes
lane String No
largestCriticalStrike Int | Null Yes
largestKillingSpree Int | Null Yes
largestMultiKill Int | Null Yes
longestTimeSpentLiving Int | Null Yes
magicDamageDealt Int | Null Yes
magicDamageDealtToChampions Int | Null Yes
magicDamageTaken Int | Null Yes
neutralMinionsKilled Int | Null Yes
nexusKills Int | Null Yes
nexusLost Int | Null Yes
nexusTakedowns Int | Null Yes
objectivesStolen Int | Null Yes
objectivesStolenAssists Int | Null Yes
participantId Int | Null Yes
pentaKills Int | Null Yes
physicalDamageDealt Int | Null Yes
physicalDamageDealtToChampions Int | Null Yes
physicalDamageTaken Int | Null Yes
quadraKills Int | Null Yes
riotIdName String No
riotIdTagline String No
role String No
sightWardsBoughtInGame Int | Null Yes
spell1Casts Int | Null Yes
spell2Casts Int | Null Yes
spell3Casts Int | Null Yes
spell4Casts Int | Null Yes
summoner1Casts Int | Null Yes
summoner1Id Int | Null Yes
summoner2Casts Int | Null Yes
summoner2Id Int | Null Yes
summonerLevel Int | Null Yes
summonerName String No
teamEarlySurrendered Boolean No
teamId Int | Null Yes
teamPosition String No
timeCCingOthers Int | Null Yes
timePlayed Int | Null Yes
totalDamageDealt Int | Null Yes
totalDamageDealtToChampions Int | Null Yes
totalDamageShieldedOnTeammates Int | Null Yes
totalDamageTaken Int | Null Yes
totalHeal Int | Null Yes
totalHealsOnTeammates Int | Null Yes
totalMinionsKilled Int | Null Yes
totalTimeCCDealt Int | Null Yes
totalTimeSpentDead Int | Null Yes
totalUnitsHealed Int | Null Yes
tripleKills Int | Null Yes
trueDamageDealt Int | Null Yes
trueDamageDealtToChampions Int | Null Yes
trueDamageTaken Int | Null Yes
turretsKilled Int | Null Yes
turretTakedowns Int | Null Yes
turretsLost Int | Null Yes
unrealKills Int | Null Yes
visionScore Int | Null Yes
visionWardsBoughtInGame Int | Null Yes
wardsKilled Int | Null Yes
wardsPlaced Int | Null Yes
win Boolean No

PlayerEndOfGameStatCreateOrConnectWithoutPerksInput

Name Type Nullable
where PlayerEndOfGameStatWhereUniqueInput No
create PlayerEndOfGameStatCreateWithoutPerksInput | PlayerEndOfGameStatUncheckedCreateWithoutPerksInput No

RuneStyleCreateWithoutPlayerRunesInput

Name Type Nullable
id String No
selection RuneSelectionCreateNestedManyWithoutRuneStyleInput No
description String No
style Int | Null Yes

RuneStyleUncheckedCreateWithoutPlayerRunesInput

Name Type Nullable
id String No
selection RuneSelectionUncheckedCreateNestedManyWithoutRuneStyleInput No
description String No
style Int | Null Yes

RuneStyleCreateOrConnectWithoutPlayerRunesInput

Name Type Nullable
where RuneStyleWhereUniqueInput No
create RuneStyleCreateWithoutPlayerRunesInput | RuneStyleUncheckedCreateWithoutPlayerRunesInput No

RuneStyleCreateManyPlayerRunesInputEnvelope

Name Type Nullable
data RuneStyleCreateManyPlayerRunesInput[] No
skipDuplicates Boolean No


PlayerEndOfGameStatUpdateWithoutPerksInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
player PlayerUpdateOneWithoutEndOfGameStatsInput No
game GameUpdateOneWithoutFrom_PlayerEndOfGameStat_gameInput No
items PlayerItemUpdateOneWithoutPlayerEndOfGameStatInput No
assists Int | NullableIntFieldUpdateOperationsInput | Null Yes
baronKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
bountyLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
championExperience Int | NullableIntFieldUpdateOperationsInput | Null Yes
championLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
championId Int | NullableIntFieldUpdateOperationsInput | Null Yes
championName String | StringFieldUpdateOperationsInput No
championTransform Int | NullableIntFieldUpdateOperationsInput | Null Yes
consumablesPurchased Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToBuildings Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToObjectives Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToTurrets Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageSelfMitigated Int | NullableIntFieldUpdateOperationsInput | Null Yes
deaths Int | NullableIntFieldUpdateOperationsInput | Null Yes
detectorWardsPlaced Int | NullableIntFieldUpdateOperationsInput | Null Yes
doubleKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
dragonKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
firstBlood Boolean | BoolFieldUpdateOperationsInput No
firstBloodAssist Boolean | BoolFieldUpdateOperationsInput No
firstTowerKill Boolean | BoolFieldUpdateOperationsInput No
firstTowerAssist Boolean | BoolFieldUpdateOperationsInput No
gameEndedInEarlySurrender Boolean | BoolFieldUpdateOperationsInput No
gameEndedInSurrender Boolean | BoolFieldUpdateOperationsInput No
goldEarned Int | NullableIntFieldUpdateOperationsInput | Null Yes
goldSpent Int | NullableIntFieldUpdateOperationsInput | Null Yes
individualPosition String | StringFieldUpdateOperationsInput No
inhibitorKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
inhibitorTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
inhibitorsLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
item0 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item1 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item2 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item3 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item4 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item5 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item6 Int | NullableIntFieldUpdateOperationsInput | Null Yes
itemsPurchased Int | NullableIntFieldUpdateOperationsInput | Null Yes
killingSprees Int | NullableIntFieldUpdateOperationsInput | Null Yes
kills Int | NullableIntFieldUpdateOperationsInput | Null Yes
lane String | StringFieldUpdateOperationsInput No
largestCriticalStrike Int | NullableIntFieldUpdateOperationsInput | Null Yes
largestKillingSpree Int | NullableIntFieldUpdateOperationsInput | Null Yes
largestMultiKill Int | NullableIntFieldUpdateOperationsInput | Null Yes
longestTimeSpentLiving Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
neutralMinionsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
objectivesStolen Int | NullableIntFieldUpdateOperationsInput | Null Yes
objectivesStolenAssists Int | NullableIntFieldUpdateOperationsInput | Null Yes
participantId Int | NullableIntFieldUpdateOperationsInput | Null Yes
pentaKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
quadraKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
riotIdName String | StringFieldUpdateOperationsInput No
riotIdTagline String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
sightWardsBoughtInGame Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell1Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell2Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell3Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell4Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner1Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner1Id Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner2Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner2Id Int | NullableIntFieldUpdateOperationsInput | Null Yes
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
summonerName String | StringFieldUpdateOperationsInput No
teamEarlySurrendered Boolean | BoolFieldUpdateOperationsInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
teamPosition String | StringFieldUpdateOperationsInput No
timeCCingOthers Int | NullableIntFieldUpdateOperationsInput | Null Yes
timePlayed Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageShieldedOnTeammates Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalHeal Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalHealsOnTeammates Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalMinionsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalTimeCCDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalTimeSpentDead Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalUnitsHealed Int | NullableIntFieldUpdateOperationsInput | Null Yes
tripleKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretsLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
unrealKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
visionScore Int | NullableIntFieldUpdateOperationsInput | Null Yes
visionWardsBoughtInGame Int | NullableIntFieldUpdateOperationsInput | Null Yes
wardsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
wardsPlaced Int | NullableIntFieldUpdateOperationsInput | Null Yes
win Boolean | BoolFieldUpdateOperationsInput No

PlayerEndOfGameStatUncheckedUpdateWithoutPerksInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
playerId String | NullableStringFieldUpdateOperationsInput | Null Yes
gameId String | NullableStringFieldUpdateOperationsInput | Null Yes
itemsId String | NullableStringFieldUpdateOperationsInput | Null Yes
assists Int | NullableIntFieldUpdateOperationsInput | Null Yes
baronKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
bountyLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
championExperience Int | NullableIntFieldUpdateOperationsInput | Null Yes
championLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
championId Int | NullableIntFieldUpdateOperationsInput | Null Yes
championName String | StringFieldUpdateOperationsInput No
championTransform Int | NullableIntFieldUpdateOperationsInput | Null Yes
consumablesPurchased Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToBuildings Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToObjectives Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToTurrets Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageSelfMitigated Int | NullableIntFieldUpdateOperationsInput | Null Yes
deaths Int | NullableIntFieldUpdateOperationsInput | Null Yes
detectorWardsPlaced Int | NullableIntFieldUpdateOperationsInput | Null Yes
doubleKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
dragonKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
firstBlood Boolean | BoolFieldUpdateOperationsInput No
firstBloodAssist Boolean | BoolFieldUpdateOperationsInput No
firstTowerKill Boolean | BoolFieldUpdateOperationsInput No
firstTowerAssist Boolean | BoolFieldUpdateOperationsInput No
gameEndedInEarlySurrender Boolean | BoolFieldUpdateOperationsInput No
gameEndedInSurrender Boolean | BoolFieldUpdateOperationsInput No
goldEarned Int | NullableIntFieldUpdateOperationsInput | Null Yes
goldSpent Int | NullableIntFieldUpdateOperationsInput | Null Yes
individualPosition String | StringFieldUpdateOperationsInput No
inhibitorKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
inhibitorTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
inhibitorsLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
item0 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item1 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item2 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item3 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item4 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item5 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item6 Int | NullableIntFieldUpdateOperationsInput | Null Yes
itemsPurchased Int | NullableIntFieldUpdateOperationsInput | Null Yes
killingSprees Int | NullableIntFieldUpdateOperationsInput | Null Yes
kills Int | NullableIntFieldUpdateOperationsInput | Null Yes
lane String | StringFieldUpdateOperationsInput No
largestCriticalStrike Int | NullableIntFieldUpdateOperationsInput | Null Yes
largestKillingSpree Int | NullableIntFieldUpdateOperationsInput | Null Yes
largestMultiKill Int | NullableIntFieldUpdateOperationsInput | Null Yes
longestTimeSpentLiving Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
neutralMinionsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
objectivesStolen Int | NullableIntFieldUpdateOperationsInput | Null Yes
objectivesStolenAssists Int | NullableIntFieldUpdateOperationsInput | Null Yes
participantId Int | NullableIntFieldUpdateOperationsInput | Null Yes
pentaKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
quadraKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
riotIdName String | StringFieldUpdateOperationsInput No
riotIdTagline String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
sightWardsBoughtInGame Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell1Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell2Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell3Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell4Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner1Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner1Id Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner2Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner2Id Int | NullableIntFieldUpdateOperationsInput | Null Yes
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
summonerName String | StringFieldUpdateOperationsInput No
teamEarlySurrendered Boolean | BoolFieldUpdateOperationsInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
teamPosition String | StringFieldUpdateOperationsInput No
timeCCingOthers Int | NullableIntFieldUpdateOperationsInput | Null Yes
timePlayed Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageShieldedOnTeammates Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalHeal Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalHealsOnTeammates Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalMinionsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalTimeCCDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalTimeSpentDead Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalUnitsHealed Int | NullableIntFieldUpdateOperationsInput | Null Yes
tripleKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretsLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
unrealKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
visionScore Int | NullableIntFieldUpdateOperationsInput | Null Yes
visionWardsBoughtInGame Int | NullableIntFieldUpdateOperationsInput | Null Yes
wardsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
wardsPlaced Int | NullableIntFieldUpdateOperationsInput | Null Yes
win Boolean | BoolFieldUpdateOperationsInput No


RuneStyleUpdateWithWhereUniqueWithoutPlayerRunesInput

Name Type Nullable
where RuneStyleWhereUniqueInput No
data RuneStyleUpdateWithoutPlayerRunesInput | RuneStyleUncheckedUpdateWithoutPlayerRunesInput No

RuneStyleUpdateManyWithWhereWithoutPlayerRunesInput

Name Type Nullable
where RuneStyleScalarWhereInput No
data RuneStyleUpdateManyMutationInput | RuneStyleUncheckedUpdateManyWithoutRuneStyleInput No

RuneStyleScalarWhereInput

Name Type Nullable
AND RuneStyleScalarWhereInput | RuneStyleScalarWhereInput[] No
OR RuneStyleScalarWhereInput[] No
NOT RuneStyleScalarWhereInput | RuneStyleScalarWhereInput[] No
id StringFilter | String No
playerRunesId StringNullableFilter | String | Null Yes
description StringFilter | String No
style IntNullableFilter | Int | Null Yes

PlayerCreateWithoutSkillLevelUpEventsInput

Name Type Nullable
id String No
puuid String No
accountId String No
platformId String No
summonerId String No
summonerName String No
summonerLevel Int | Null Yes
profileIconId Int | Null Yes
revisionDate String No
kills PlayerKillCreateNestedManyWithoutKillerInput No
deaths PlayerKillCreateNestedManyWithoutVictimInput No
teams TeamCreateNestedManyWithoutPlayersInput No
profile ProfileCreateNestedOneWithoutPlayerInput No
monsterKills TeamMonsterKillCreateNestedManyWithoutKillerInput No
buildingKills TeamBuildingKillCreateNestedManyWithoutKillerInput No
itemEvent PlayerItemEventCreateNestedManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatCreateNestedManyWithoutPlayerInput No
snapshots PlayerSnapshotCreateNestedManyWithoutPlayerInput No
wardEvents PlayerWardEventCreateNestedManyWithoutPlayerInput No

PlayerUncheckedCreateWithoutSkillLevelUpEventsInput

Name Type Nullable
id String No
puuid String No
accountId String No
platformId String No
summonerId String No
summonerName String No
summonerLevel Int | Null Yes
profileIconId Int | Null Yes
revisionDate String No
kills PlayerKillUncheckedCreateNestedManyWithoutKillerInput No
deaths PlayerKillUncheckedCreateNestedManyWithoutVictimInput No
teams TeamUncheckedCreateNestedManyWithoutPlayersInput No
profileId String | Null Yes
monsterKills TeamMonsterKillUncheckedCreateNestedManyWithoutKillerInput No
buildingKills TeamBuildingKillUncheckedCreateNestedManyWithoutKillerInput No
itemEvent PlayerItemEventUncheckedCreateNestedManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatUncheckedCreateNestedManyWithoutPlayerInput No
snapshots PlayerSnapshotUncheckedCreateNestedManyWithoutPlayerInput No
wardEvents PlayerWardEventUncheckedCreateNestedManyWithoutPlayerInput No

PlayerCreateOrConnectWithoutSkillLevelUpEventsInput

Name Type Nullable
where PlayerWhereUniqueInput No
create PlayerCreateWithoutSkillLevelUpEventsInput | PlayerUncheckedCreateWithoutSkillLevelUpEventsInput No


PlayerUpdateWithWhereUniqueWithoutSkillLevelUpEventsInput

Name Type Nullable
where PlayerWhereUniqueInput No
data PlayerUpdateWithoutSkillLevelUpEventsInput | PlayerUncheckedUpdateWithoutSkillLevelUpEventsInput No

PlayerUpdateManyWithWhereWithoutSkillLevelUpEventsInput

Name Type Nullable
where PlayerScalarWhereInput No
data PlayerUpdateManyMutationInput | PlayerUncheckedUpdateManyWithoutPlayerInput No

PositionCreateWithoutPlayerSnapshotInput

Name Type Nullable
id String No
event EventCreateNestedManyWithoutPositionInput No
x Int | Null Yes
y Int | Null Yes

PositionUncheckedCreateWithoutPlayerSnapshotInput

Name Type Nullable
id String No
event EventUncheckedCreateNestedManyWithoutPositionInput No
x Int | Null Yes
y Int | Null Yes

PositionCreateOrConnectWithoutPlayerSnapshotInput

Name Type Nullable
where PositionWhereUniqueInput No
create PositionCreateWithoutPlayerSnapshotInput | PositionUncheckedCreateWithoutPlayerSnapshotInput No

PlayerCreateWithoutSnapshotsInput

Name Type Nullable
id String No
puuid String No
accountId String No
platformId String No
summonerId String No
summonerName String No
summonerLevel Int | Null Yes
profileIconId Int | Null Yes
revisionDate String No
kills PlayerKillCreateNestedManyWithoutKillerInput No
deaths PlayerKillCreateNestedManyWithoutVictimInput No
teams TeamCreateNestedManyWithoutPlayersInput No
profile ProfileCreateNestedOneWithoutPlayerInput No
monsterKills TeamMonsterKillCreateNestedManyWithoutKillerInput No
buildingKills TeamBuildingKillCreateNestedManyWithoutKillerInput No
itemEvent PlayerItemEventCreateNestedManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatCreateNestedManyWithoutPlayerInput No
wardEvents PlayerWardEventCreateNestedManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventCreateNestedManyWithoutPlayerInput No

PlayerUncheckedCreateWithoutSnapshotsInput

Name Type Nullable
id String No
puuid String No
accountId String No
platformId String No
summonerId String No
summonerName String No
summonerLevel Int | Null Yes
profileIconId Int | Null Yes
revisionDate String No
kills PlayerKillUncheckedCreateNestedManyWithoutKillerInput No
deaths PlayerKillUncheckedCreateNestedManyWithoutVictimInput No
teams TeamUncheckedCreateNestedManyWithoutPlayersInput No
profileId String | Null Yes
monsterKills TeamMonsterKillUncheckedCreateNestedManyWithoutKillerInput No
buildingKills TeamBuildingKillUncheckedCreateNestedManyWithoutKillerInput No
itemEvent PlayerItemEventUncheckedCreateNestedManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatUncheckedCreateNestedManyWithoutPlayerInput No
wardEvents PlayerWardEventUncheckedCreateNestedManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventUncheckedCreateNestedManyWithoutPlayerInput No

PlayerCreateOrConnectWithoutSnapshotsInput

Name Type Nullable
where PlayerWhereUniqueInput No
create PlayerCreateWithoutSnapshotsInput | PlayerUncheckedCreateWithoutSnapshotsInput No


PositionUpdateWithWhereUniqueWithoutPlayerSnapshotInput

Name Type Nullable
where PositionWhereUniqueInput No
data PositionUpdateWithoutPlayerSnapshotInput | PositionUncheckedUpdateWithoutPlayerSnapshotInput No

PositionUpdateManyWithWhereWithoutPlayerSnapshotInput

Name Type Nullable
where PositionScalarWhereInput No
data PositionUpdateManyMutationInput | PositionUncheckedUpdateManyWithoutPositionInput No


PlayerUpdateWithWhereUniqueWithoutSnapshotsInput

Name Type Nullable
where PlayerWhereUniqueInput No
data PlayerUpdateWithoutSnapshotsInput | PlayerUncheckedUpdateWithoutSnapshotsInput No

PlayerUpdateManyWithWhereWithoutSnapshotsInput

Name Type Nullable
where PlayerScalarWhereInput No
data PlayerUpdateManyMutationInput | PlayerUncheckedUpdateManyWithoutPlayerInput No

PlayerCreateWithoutWardEventsInput

Name Type Nullable
id String No
puuid String No
accountId String No
platformId String No
summonerId String No
summonerName String No
summonerLevel Int | Null Yes
profileIconId Int | Null Yes
revisionDate String No
kills PlayerKillCreateNestedManyWithoutKillerInput No
deaths PlayerKillCreateNestedManyWithoutVictimInput No
teams TeamCreateNestedManyWithoutPlayersInput No
profile ProfileCreateNestedOneWithoutPlayerInput No
monsterKills TeamMonsterKillCreateNestedManyWithoutKillerInput No
buildingKills TeamBuildingKillCreateNestedManyWithoutKillerInput No
itemEvent PlayerItemEventCreateNestedManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatCreateNestedManyWithoutPlayerInput No
snapshots PlayerSnapshotCreateNestedManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventCreateNestedManyWithoutPlayerInput No

PlayerUncheckedCreateWithoutWardEventsInput

Name Type Nullable
id String No
puuid String No
accountId String No
platformId String No
summonerId String No
summonerName String No
summonerLevel Int | Null Yes
profileIconId Int | Null Yes
revisionDate String No
kills PlayerKillUncheckedCreateNestedManyWithoutKillerInput No
deaths PlayerKillUncheckedCreateNestedManyWithoutVictimInput No
teams TeamUncheckedCreateNestedManyWithoutPlayersInput No
profileId String | Null Yes
monsterKills TeamMonsterKillUncheckedCreateNestedManyWithoutKillerInput No
buildingKills TeamBuildingKillUncheckedCreateNestedManyWithoutKillerInput No
itemEvent PlayerItemEventUncheckedCreateNestedManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatUncheckedCreateNestedManyWithoutPlayerInput No
snapshots PlayerSnapshotUncheckedCreateNestedManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventUncheckedCreateNestedManyWithoutPlayerInput No

PlayerCreateOrConnectWithoutWardEventsInput

Name Type Nullable
where PlayerWhereUniqueInput No
create PlayerCreateWithoutWardEventsInput | PlayerUncheckedCreateWithoutWardEventsInput No


PlayerUpdateWithWhereUniqueWithoutWardEventsInput

Name Type Nullable
where PlayerWhereUniqueInput No
data PlayerUpdateWithoutWardEventsInput | PlayerUncheckedUpdateWithoutWardEventsInput No

PlayerUpdateManyWithWhereWithoutWardEventsInput

Name Type Nullable
where PlayerScalarWhereInput No
data PlayerUpdateManyMutationInput | PlayerUncheckedUpdateManyWithoutPlayerInput No

EventCreateWithoutPositionInput

Name Type Nullable
id String No
timestamp Int | Null Yes

EventUncheckedCreateWithoutPositionInput

Name Type Nullable
id String No
timestamp Int | Null Yes

EventCreateOrConnectWithoutPositionInput

Name Type Nullable
where EventWhereUniqueInput No
create EventCreateWithoutPositionInput | EventUncheckedCreateWithoutPositionInput No

PlayerSnapshotCreateWithoutPositionInput

Name Type Nullable
id String No
timestamp Float | Null Yes
currentGold Int | Null Yes
totalGold Int | Null Yes
totalGoldDiff Int | Null Yes
xp Int | Null Yes
xpDiff Int | Null Yes
level Int | Null Yes
cs Int | Null Yes
csDiff Int | Null Yes
monstersKilled Int | Null Yes
monstersKilledDiff Int | Null Yes
player PlayerCreateNestedManyWithoutSnapshotsInput No

PlayerSnapshotUncheckedCreateWithoutPositionInput

Name Type Nullable
id String No
timestamp Float | Null Yes
currentGold Int | Null Yes
totalGold Int | Null Yes
totalGoldDiff Int | Null Yes
xp Int | Null Yes
xpDiff Int | Null Yes
level Int | Null Yes
cs Int | Null Yes
csDiff Int | Null Yes
monstersKilled Int | Null Yes
monstersKilledDiff Int | Null Yes
player PlayerUncheckedCreateNestedManyWithoutSnapshotsInput No

PlayerSnapshotCreateOrConnectWithoutPositionInput

Name Type Nullable
where PlayerSnapshotWhereUniqueInput No
create PlayerSnapshotCreateWithoutPositionInput | PlayerSnapshotUncheckedCreateWithoutPositionInput No


EventUpdateWithWhereUniqueWithoutPositionInput

Name Type Nullable
where EventWhereUniqueInput No
data EventUpdateWithoutPositionInput | EventUncheckedUpdateWithoutPositionInput No

EventUpdateManyWithWhereWithoutPositionInput

Name Type Nullable
where EventScalarWhereInput No
data EventUpdateManyMutationInput | EventUncheckedUpdateManyWithoutEventInput No

EventScalarWhereInput

Name Type Nullable
AND EventScalarWhereInput | EventScalarWhereInput[] No
OR EventScalarWhereInput[] No
NOT EventScalarWhereInput | EventScalarWhereInput[] No
id StringFilter | String No
timestamp IntNullableFilter | Int | Null Yes


PlayerSnapshotUpdateWithWhereUniqueWithoutPositionInput

Name Type Nullable
where PlayerSnapshotWhereUniqueInput No
data PlayerSnapshotUpdateWithoutPositionInput | PlayerSnapshotUncheckedUpdateWithoutPositionInput No

PlayerSnapshotUpdateManyWithWhereWithoutPositionInput

Name Type Nullable
where PlayerSnapshotScalarWhereInput No
data PlayerSnapshotUpdateManyMutationInput | PlayerSnapshotUncheckedUpdateManyWithoutPlayerSnapshotInput No

PlayerCreateWithoutProfileInput

Name Type Nullable
id String No
puuid String No
accountId String No
platformId String No
summonerId String No
summonerName String No
summonerLevel Int | Null Yes
profileIconId Int | Null Yes
revisionDate String No
kills PlayerKillCreateNestedManyWithoutKillerInput No
deaths PlayerKillCreateNestedManyWithoutVictimInput No
teams TeamCreateNestedManyWithoutPlayersInput No
monsterKills TeamMonsterKillCreateNestedManyWithoutKillerInput No
buildingKills TeamBuildingKillCreateNestedManyWithoutKillerInput No
itemEvent PlayerItemEventCreateNestedManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatCreateNestedManyWithoutPlayerInput No
snapshots PlayerSnapshotCreateNestedManyWithoutPlayerInput No
wardEvents PlayerWardEventCreateNestedManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventCreateNestedManyWithoutPlayerInput No

PlayerUncheckedCreateWithoutProfileInput

Name Type Nullable
id String No
puuid String No
accountId String No
platformId String No
summonerId String No
summonerName String No
summonerLevel Int | Null Yes
profileIconId Int | Null Yes
revisionDate String No
kills PlayerKillUncheckedCreateNestedManyWithoutKillerInput No
deaths PlayerKillUncheckedCreateNestedManyWithoutVictimInput No
teams TeamUncheckedCreateNestedManyWithoutPlayersInput No
monsterKills TeamMonsterKillUncheckedCreateNestedManyWithoutKillerInput No
buildingKills TeamBuildingKillUncheckedCreateNestedManyWithoutKillerInput No
itemEvent PlayerItemEventUncheckedCreateNestedManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatUncheckedCreateNestedManyWithoutPlayerInput No
snapshots PlayerSnapshotUncheckedCreateNestedManyWithoutPlayerInput No
wardEvents PlayerWardEventUncheckedCreateNestedManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventUncheckedCreateNestedManyWithoutPlayerInput No

PlayerCreateOrConnectWithoutProfileInput

Name Type Nullable
where PlayerWhereUniqueInput No
create PlayerCreateWithoutProfileInput | PlayerUncheckedCreateWithoutProfileInput No

ActivityCreateWithoutProfileInput

Name Type Nullable
id String No
month Int | Null Yes
year Int | Null Yes
day Int | Null Yes
gamesPlayed Int | Null Yes

ActivityUncheckedCreateWithoutProfileInput

Name Type Nullable
id String No
month Int | Null Yes
year Int | Null Yes
day Int | Null Yes
gamesPlayed Int | Null Yes

ActivityCreateOrConnectWithoutProfileInput

Name Type Nullable
where ActivityWhereUniqueInput No
create ActivityCreateWithoutProfileInput | ActivityUncheckedCreateWithoutProfileInput No

ActivityCreateManyProfileInputEnvelope

Name Type Nullable
data ActivityCreateManyProfileInput[] No
skipDuplicates Boolean No

ChampionWinrateCreateWithoutProfileInput

Name Type Nullable
id String No
champion String No
wins Int | Null Yes
games Int | Null Yes
spell1Casts Int | Null Yes
spell2Casts Int | Null Yes
spell3Casts Int | Null Yes
spell4Casts Int | Null Yes

ChampionWinrateUncheckedCreateWithoutProfileInput

Name Type Nullable
id String No
champion String No
wins Int | Null Yes
games Int | Null Yes
spell1Casts Int | Null Yes
spell2Casts Int | Null Yes
spell3Casts Int | Null Yes
spell4Casts Int | Null Yes

ChampionWinrateCreateOrConnectWithoutProfileInput

Name Type Nullable
where ChampionWinrateWhereUniqueInput No
create ChampionWinrateCreateWithoutProfileInput | ChampionWinrateUncheckedCreateWithoutProfileInput No

ChampionWinrateCreateManyProfileInputEnvelope

Name Type Nullable
data ChampionWinrateCreateManyProfileInput[] No
skipDuplicates Boolean No

DuoCreateWithoutProfileInput

Name Type Nullable
id String No
name String No
wins Int | Null Yes
losses Int | Null Yes
winrate String No

DuoUncheckedCreateWithoutProfileInput

Name Type Nullable
id String No
name String No
wins Int | Null Yes
losses Int | Null Yes
winrate String No

DuoCreateOrConnectWithoutProfileInput

Name Type Nullable
where DuoWhereUniqueInput No
create DuoCreateWithoutProfileInput | DuoUncheckedCreateWithoutProfileInput No

DuoCreateManyProfileInputEnvelope

Name Type Nullable
data DuoCreateManyProfileInput[] No
skipDuplicates Boolean No


PlayerUpdateWithoutProfileInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
puuid String | StringFieldUpdateOperationsInput No
accountId String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
summonerId String | StringFieldUpdateOperationsInput No
summonerName String | StringFieldUpdateOperationsInput No
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
profileIconId Int | NullableIntFieldUpdateOperationsInput | Null Yes
revisionDate String | StringFieldUpdateOperationsInput No
kills PlayerKillUpdateManyWithoutKillerInput No
deaths PlayerKillUpdateManyWithoutVictimInput No
teams TeamUpdateManyWithoutPlayersInput No
monsterKills TeamMonsterKillUpdateManyWithoutKillerInput No
buildingKills TeamBuildingKillUpdateManyWithoutKillerInput No
itemEvent PlayerItemEventUpdateManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatUpdateManyWithoutPlayerInput No
snapshots PlayerSnapshotUpdateManyWithoutPlayerInput No
wardEvents PlayerWardEventUpdateManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventUpdateManyWithoutPlayerInput No

PlayerUncheckedUpdateWithoutProfileInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
puuid String | StringFieldUpdateOperationsInput No
accountId String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
summonerId String | StringFieldUpdateOperationsInput No
summonerName String | StringFieldUpdateOperationsInput No
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
profileIconId Int | NullableIntFieldUpdateOperationsInput | Null Yes
revisionDate String | StringFieldUpdateOperationsInput No
kills PlayerKillUncheckedUpdateManyWithoutKillerInput No
deaths PlayerKillUncheckedUpdateManyWithoutVictimInput No
teams TeamUncheckedUpdateManyWithoutPlayersInput No
monsterKills TeamMonsterKillUncheckedUpdateManyWithoutKillerInput No
buildingKills TeamBuildingKillUncheckedUpdateManyWithoutKillerInput No
itemEvent PlayerItemEventUncheckedUpdateManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatUncheckedUpdateManyWithoutPlayerInput No
snapshots PlayerSnapshotUncheckedUpdateManyWithoutPlayerInput No
wardEvents PlayerWardEventUncheckedUpdateManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventUncheckedUpdateManyWithoutPlayerInput No


ActivityUpdateWithWhereUniqueWithoutProfileInput

Name Type Nullable
where ActivityWhereUniqueInput No
data ActivityUpdateWithoutProfileInput | ActivityUncheckedUpdateWithoutProfileInput No

ActivityUpdateManyWithWhereWithoutProfileInput

Name Type Nullable
where ActivityScalarWhereInput No
data ActivityUpdateManyMutationInput | ActivityUncheckedUpdateManyWithoutActivityInput No

ActivityScalarWhereInput

Name Type Nullable
AND ActivityScalarWhereInput | ActivityScalarWhereInput[] No
OR ActivityScalarWhereInput[] No
NOT ActivityScalarWhereInput | ActivityScalarWhereInput[] No
id StringFilter | String No
profileId StringNullableFilter | String | Null Yes
month IntNullableFilter | Int | Null Yes
year IntNullableFilter | Int | Null Yes
day IntNullableFilter | Int | Null Yes
gamesPlayed IntNullableFilter | Int | Null Yes


ChampionWinrateUpdateWithWhereUniqueWithoutProfileInput

Name Type Nullable
where ChampionWinrateWhereUniqueInput No
data ChampionWinrateUpdateWithoutProfileInput | ChampionWinrateUncheckedUpdateWithoutProfileInput No

ChampionWinrateUpdateManyWithWhereWithoutProfileInput

Name Type Nullable
where ChampionWinrateScalarWhereInput No
data ChampionWinrateUpdateManyMutationInput | ChampionWinrateUncheckedUpdateManyWithoutChampionWinrateInput No

ChampionWinrateScalarWhereInput

Name Type Nullable
AND ChampionWinrateScalarWhereInput | ChampionWinrateScalarWhereInput[] No
OR ChampionWinrateScalarWhereInput[] No
NOT ChampionWinrateScalarWhereInput | ChampionWinrateScalarWhereInput[] No
id StringFilter | String No
profileId StringNullableFilter | String | Null Yes
champion StringFilter | String No
wins IntNullableFilter | Int | Null Yes
games IntNullableFilter | Int | Null Yes
spell1Casts IntNullableFilter | Int | Null Yes
spell2Casts IntNullableFilter | Int | Null Yes
spell3Casts IntNullableFilter | Int | Null Yes
spell4Casts IntNullableFilter | Int | Null Yes

DuoUpsertWithWhereUniqueWithoutProfileInput

Name Type Nullable
where DuoWhereUniqueInput No
update DuoUpdateWithoutProfileInput | DuoUncheckedUpdateWithoutProfileInput No
create DuoCreateWithoutProfileInput | DuoUncheckedCreateWithoutProfileInput No

DuoUpdateWithWhereUniqueWithoutProfileInput

Name Type Nullable
where DuoWhereUniqueInput No
data DuoUpdateWithoutProfileInput | DuoUncheckedUpdateWithoutProfileInput No

DuoUpdateManyWithWhereWithoutProfileInput

Name Type Nullable
where DuoScalarWhereInput No
data DuoUpdateManyMutationInput | DuoUncheckedUpdateManyWithoutDuosInput No

DuoScalarWhereInput

Name Type Nullable
AND DuoScalarWhereInput | DuoScalarWhereInput[] No
OR DuoScalarWhereInput[] No
NOT DuoScalarWhereInput | DuoScalarWhereInput[] No
id StringFilter | String No
profileId StringNullableFilter | String | Null Yes
name StringFilter | String No
wins IntNullableFilter | Int | Null Yes
losses IntNullableFilter | Int | Null Yes
winrate StringFilter | String No

GameCreateWithoutSourceInput

Name Type Nullable
id String No
matchId String No
gameId String No
gameCreation String No
gameStartTimestamp String No
gameEndTimestamp String No
duration Int | Null Yes
start String No
gameVersion String No
blueTeam TeamCreateNestedOneWithoutFrom_Game_blueTeamInput No
redTeam TeamCreateNestedOneWithoutFrom_Game_redTeamInput No
tournament String No
gameInSeries Int | Null Yes
vod String No
platformId String No
from_PlayerEndOfGameStat_game PlayerEndOfGameStatCreateNestedManyWithoutGameInput No
from_Team_game TeamCreateNestedManyWithoutGameInput No

GameUncheckedCreateWithoutSourceInput

Name Type Nullable
id String No
matchId String No
gameId String No
gameCreation String No
gameStartTimestamp String No
gameEndTimestamp String No
duration Int | Null Yes
start String No
gameVersion String No
blueTeamId String | Null Yes
redTeamId String | Null Yes
tournament String No
gameInSeries Int | Null Yes
vod String No
platformId String No
from_PlayerEndOfGameStat_game PlayerEndOfGameStatUncheckedCreateNestedManyWithoutGameInput No
from_Team_game TeamUncheckedCreateNestedManyWithoutGameInput No

GameCreateOrConnectWithoutSourceInput

Name Type Nullable
where GameWhereUniqueInput No
create GameCreateWithoutSourceInput | GameUncheckedCreateWithoutSourceInput No

GameUpsertWithWhereUniqueWithoutSourceInput

Name Type Nullable
where GameWhereUniqueInput No
update GameUpdateWithoutSourceInput | GameUncheckedUpdateWithoutSourceInput No
create GameCreateWithoutSourceInput | GameUncheckedCreateWithoutSourceInput No

GameUpdateWithWhereUniqueWithoutSourceInput

Name Type Nullable
where GameWhereUniqueInput No
data GameUpdateWithoutSourceInput | GameUncheckedUpdateWithoutSourceInput No

GameUpdateManyWithWhereWithoutSourceInput

Name Type Nullable
where GameScalarWhereInput No
data GameUpdateManyMutationInput | GameUncheckedUpdateManyWithoutGameInput No

GameScalarWhereInput

Name Type Nullable
AND GameScalarWhereInput | GameScalarWhereInput[] No
OR GameScalarWhereInput[] No
NOT GameScalarWhereInput | GameScalarWhereInput[] No
id StringFilter | String No
matchId StringFilter | String No
gameId StringFilter | String No
gameCreation StringFilter | String No
gameStartTimestamp StringFilter | String No
gameEndTimestamp StringFilter | String No
duration IntNullableFilter | Int | Null Yes
start StringFilter | String No
gameVersion StringFilter | String No
blueTeamId StringNullableFilter | String | Null Yes
redTeamId StringNullableFilter | String | Null Yes
tournament StringFilter | String No
gameInSeries IntNullableFilter | Int | Null Yes
vod StringFilter | String No
platformId StringFilter | String No

PickBanCreateWithoutTeamInput

Name Type Nullable
id String No
championId Int | Null Yes
pickTurn Int | Null Yes

PickBanUncheckedCreateWithoutTeamInput

Name Type Nullable
id String No
championId Int | Null Yes
pickTurn Int | Null Yes

PickBanCreateOrConnectWithoutTeamInput

Name Type Nullable
where PickBanWhereUniqueInput No
create PickBanCreateWithoutTeamInput | PickBanUncheckedCreateWithoutTeamInput No

PickBanCreateManyTeamInputEnvelope

Name Type Nullable
data PickBanCreateManyTeamInput[] No
skipDuplicates Boolean No

GameCreateWithoutFrom_Team_gameInput

Name Type Nullable
id String No
matchId String No
gameId String No
gameCreation String No
gameStartTimestamp String No
gameEndTimestamp String No
duration Int | Null Yes
start String No
gameVersion String No
blueTeam TeamCreateNestedOneWithoutFrom_Game_blueTeamInput No
redTeam TeamCreateNestedOneWithoutFrom_Game_redTeamInput No
source SourceCreateNestedManyWithoutGameInput No
tournament String No
gameInSeries Int | Null Yes
vod String No
platformId String No
from_PlayerEndOfGameStat_game PlayerEndOfGameStatCreateNestedManyWithoutGameInput No

GameUncheckedCreateWithoutFrom_Team_gameInput

Name Type Nullable
id String No
matchId String No
gameId String No
gameCreation String No
gameStartTimestamp String No
gameEndTimestamp String No
duration Int | Null Yes
start String No
gameVersion String No
blueTeamId String | Null Yes
redTeamId String | Null Yes
source SourceUncheckedCreateNestedManyWithoutGameInput No
tournament String No
gameInSeries Int | Null Yes
vod String No
platformId String No
from_PlayerEndOfGameStat_game PlayerEndOfGameStatUncheckedCreateNestedManyWithoutGameInput No

GameCreateOrConnectWithoutFrom_Team_gameInput

Name Type Nullable
where GameWhereUniqueInput No
create GameCreateWithoutFrom_Team_gameInput | GameUncheckedCreateWithoutFrom_Team_gameInput No

PlayerCreateWithoutTeamsInput

Name Type Nullable
id String No
puuid String No
accountId String No
platformId String No
summonerId String No
summonerName String No
summonerLevel Int | Null Yes
profileIconId Int | Null Yes
revisionDate String No
kills PlayerKillCreateNestedManyWithoutKillerInput No
deaths PlayerKillCreateNestedManyWithoutVictimInput No
profile ProfileCreateNestedOneWithoutPlayerInput No
monsterKills TeamMonsterKillCreateNestedManyWithoutKillerInput No
buildingKills TeamBuildingKillCreateNestedManyWithoutKillerInput No
itemEvent PlayerItemEventCreateNestedManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatCreateNestedManyWithoutPlayerInput No
snapshots PlayerSnapshotCreateNestedManyWithoutPlayerInput No
wardEvents PlayerWardEventCreateNestedManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventCreateNestedManyWithoutPlayerInput No

PlayerUncheckedCreateWithoutTeamsInput

Name Type Nullable
id String No
puuid String No
accountId String No
platformId String No
summonerId String No
summonerName String No
summonerLevel Int | Null Yes
profileIconId Int | Null Yes
revisionDate String No
kills PlayerKillUncheckedCreateNestedManyWithoutKillerInput No
deaths PlayerKillUncheckedCreateNestedManyWithoutVictimInput No
profileId String | Null Yes
monsterKills TeamMonsterKillUncheckedCreateNestedManyWithoutKillerInput No
buildingKills TeamBuildingKillUncheckedCreateNestedManyWithoutKillerInput No
itemEvent PlayerItemEventUncheckedCreateNestedManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatUncheckedCreateNestedManyWithoutPlayerInput No
snapshots PlayerSnapshotUncheckedCreateNestedManyWithoutPlayerInput No
wardEvents PlayerWardEventUncheckedCreateNestedManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventUncheckedCreateNestedManyWithoutPlayerInput No

PlayerCreateOrConnectWithoutTeamsInput

Name Type Nullable
where PlayerWhereUniqueInput No
create PlayerCreateWithoutTeamsInput | PlayerUncheckedCreateWithoutTeamsInput No

ObjectiveCreateWithoutTeamInput

Name Type Nullable
id String No
first Boolean No
kills Int | Null Yes
type String No

ObjectiveUncheckedCreateWithoutTeamInput

Name Type Nullable
id String No
first Boolean No
kills Int | Null Yes
type String No

ObjectiveCreateOrConnectWithoutTeamInput

Name Type Nullable
where ObjectiveWhereUniqueInput No
create ObjectiveCreateWithoutTeamInput | ObjectiveUncheckedCreateWithoutTeamInput No

ObjectiveCreateManyTeamInputEnvelope

Name Type Nullable
data ObjectiveCreateManyTeamInput[] No
skipDuplicates Boolean No

GameCreateWithoutBlueTeamInput

Name Type Nullable
id String No
matchId String No
gameId String No
gameCreation String No
gameStartTimestamp String No
gameEndTimestamp String No
duration Int | Null Yes
start String No
gameVersion String No
redTeam TeamCreateNestedOneWithoutFrom_Game_redTeamInput No
source SourceCreateNestedManyWithoutGameInput No
tournament String No
gameInSeries Int | Null Yes
vod String No
platformId String No
from_PlayerEndOfGameStat_game PlayerEndOfGameStatCreateNestedManyWithoutGameInput No
from_Team_game TeamCreateNestedManyWithoutGameInput No

GameUncheckedCreateWithoutBlueTeamInput

Name Type Nullable
id String No
matchId String No
gameId String No
gameCreation String No
gameStartTimestamp String No
gameEndTimestamp String No
duration Int | Null Yes
start String No
gameVersion String No
redTeamId String | Null Yes
source SourceUncheckedCreateNestedManyWithoutGameInput No
tournament String No
gameInSeries Int | Null Yes
vod String No
platformId String No
from_PlayerEndOfGameStat_game PlayerEndOfGameStatUncheckedCreateNestedManyWithoutGameInput No
from_Team_game TeamUncheckedCreateNestedManyWithoutGameInput No

GameCreateOrConnectWithoutBlueTeamInput

Name Type Nullable
where GameWhereUniqueInput No
create GameCreateWithoutBlueTeamInput | GameUncheckedCreateWithoutBlueTeamInput No

GameCreateManyBlueTeamInputEnvelope

Name Type Nullable
data GameCreateManyBlueTeamInput[] No
skipDuplicates Boolean No

GameCreateWithoutRedTeamInput

Name Type Nullable
id String No
matchId String No
gameId String No
gameCreation String No
gameStartTimestamp String No
gameEndTimestamp String No
duration Int | Null Yes
start String No
gameVersion String No
blueTeam TeamCreateNestedOneWithoutFrom_Game_blueTeamInput No
source SourceCreateNestedManyWithoutGameInput No
tournament String No
gameInSeries Int | Null Yes
vod String No
platformId String No
from_PlayerEndOfGameStat_game PlayerEndOfGameStatCreateNestedManyWithoutGameInput No
from_Team_game TeamCreateNestedManyWithoutGameInput No

GameUncheckedCreateWithoutRedTeamInput

Name Type Nullable
id String No
matchId String No
gameId String No
gameCreation String No
gameStartTimestamp String No
gameEndTimestamp String No
duration Int | Null Yes
start String No
gameVersion String No
blueTeamId String | Null Yes
source SourceUncheckedCreateNestedManyWithoutGameInput No
tournament String No
gameInSeries Int | Null Yes
vod String No
platformId String No
from_PlayerEndOfGameStat_game PlayerEndOfGameStatUncheckedCreateNestedManyWithoutGameInput No
from_Team_game TeamUncheckedCreateNestedManyWithoutGameInput No

GameCreateOrConnectWithoutRedTeamInput

Name Type Nullable
where GameWhereUniqueInput No
create GameCreateWithoutRedTeamInput | GameUncheckedCreateWithoutRedTeamInput No

GameCreateManyRedTeamInputEnvelope

Name Type Nullable
data GameCreateManyRedTeamInput[] No
skipDuplicates Boolean No


PickBanUpdateWithWhereUniqueWithoutTeamInput

Name Type Nullable
where PickBanWhereUniqueInput No
data PickBanUpdateWithoutTeamInput | PickBanUncheckedUpdateWithoutTeamInput No

PickBanUpdateManyWithWhereWithoutTeamInput

Name Type Nullable
where PickBanScalarWhereInput No
data PickBanUpdateManyMutationInput | PickBanUncheckedUpdateManyWithoutPickBanInput No

PickBanScalarWhereInput

Name Type Nullable
AND PickBanScalarWhereInput | PickBanScalarWhereInput[] No
OR PickBanScalarWhereInput[] No
NOT PickBanScalarWhereInput | PickBanScalarWhereInput[] No
id StringFilter | String No
teamId StringNullableFilter | String | Null Yes
championId IntNullableFilter | Int | Null Yes
pickTurn IntNullableFilter | Int | Null Yes


GameUpdateWithoutFrom_Team_gameInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
matchId String | StringFieldUpdateOperationsInput No
gameId String | StringFieldUpdateOperationsInput No
gameCreation String | StringFieldUpdateOperationsInput No
gameStartTimestamp String | StringFieldUpdateOperationsInput No
gameEndTimestamp String | StringFieldUpdateOperationsInput No
duration Int | NullableIntFieldUpdateOperationsInput | Null Yes
start String | StringFieldUpdateOperationsInput No
gameVersion String | StringFieldUpdateOperationsInput No
blueTeam TeamUpdateOneWithoutFrom_Game_blueTeamInput No
redTeam TeamUpdateOneWithoutFrom_Game_redTeamInput No
source SourceUpdateManyWithoutGameInput No
tournament String | StringFieldUpdateOperationsInput No
gameInSeries Int | NullableIntFieldUpdateOperationsInput | Null Yes
vod String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
from_PlayerEndOfGameStat_game PlayerEndOfGameStatUpdateManyWithoutGameInput No

GameUncheckedUpdateWithoutFrom_Team_gameInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
matchId String | StringFieldUpdateOperationsInput No
gameId String | StringFieldUpdateOperationsInput No
gameCreation String | StringFieldUpdateOperationsInput No
gameStartTimestamp String | StringFieldUpdateOperationsInput No
gameEndTimestamp String | StringFieldUpdateOperationsInput No
duration Int | NullableIntFieldUpdateOperationsInput | Null Yes
start String | StringFieldUpdateOperationsInput No
gameVersion String | StringFieldUpdateOperationsInput No
blueTeamId String | NullableStringFieldUpdateOperationsInput | Null Yes
redTeamId String | NullableStringFieldUpdateOperationsInput | Null Yes
source SourceUncheckedUpdateManyWithoutGameInput No
tournament String | StringFieldUpdateOperationsInput No
gameInSeries Int | NullableIntFieldUpdateOperationsInput | Null Yes
vod String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
from_PlayerEndOfGameStat_game PlayerEndOfGameStatUncheckedUpdateManyWithoutGameInput No


PlayerUpdateWithWhereUniqueWithoutTeamsInput

Name Type Nullable
where PlayerWhereUniqueInput No
data PlayerUpdateWithoutTeamsInput | PlayerUncheckedUpdateWithoutTeamsInput No

PlayerUpdateManyWithWhereWithoutTeamsInput

Name Type Nullable
where PlayerScalarWhereInput No
data PlayerUpdateManyMutationInput | PlayerUncheckedUpdateManyWithoutPlayersInput No


ObjectiveUpdateWithWhereUniqueWithoutTeamInput

Name Type Nullable
where ObjectiveWhereUniqueInput No
data ObjectiveUpdateWithoutTeamInput | ObjectiveUncheckedUpdateWithoutTeamInput No

ObjectiveUpdateManyWithWhereWithoutTeamInput

Name Type Nullable
where ObjectiveScalarWhereInput No
data ObjectiveUpdateManyMutationInput | ObjectiveUncheckedUpdateManyWithoutObjectivesInput No

ObjectiveScalarWhereInput

Name Type Nullable
AND ObjectiveScalarWhereInput | ObjectiveScalarWhereInput[] No
OR ObjectiveScalarWhereInput[] No
NOT ObjectiveScalarWhereInput | ObjectiveScalarWhereInput[] No
id StringFilter | String No
teamId StringNullableFilter | String | Null Yes
first BoolFilter | Boolean No
kills IntNullableFilter | Int | Null Yes
type StringFilter | String No


GameUpdateWithWhereUniqueWithoutBlueTeamInput

Name Type Nullable
where GameWhereUniqueInput No
data GameUpdateWithoutBlueTeamInput | GameUncheckedUpdateWithoutBlueTeamInput No

GameUpdateManyWithWhereWithoutBlueTeamInput

Name Type Nullable
where GameScalarWhereInput No
data GameUpdateManyMutationInput | GameUncheckedUpdateManyWithoutFrom_Game_blueTeamInput No

GameUpsertWithWhereUniqueWithoutRedTeamInput

Name Type Nullable
where GameWhereUniqueInput No
update GameUpdateWithoutRedTeamInput | GameUncheckedUpdateWithoutRedTeamInput No
create GameCreateWithoutRedTeamInput | GameUncheckedCreateWithoutRedTeamInput No

GameUpdateWithWhereUniqueWithoutRedTeamInput

Name Type Nullable
where GameWhereUniqueInput No
data GameUpdateWithoutRedTeamInput | GameUncheckedUpdateWithoutRedTeamInput No

GameUpdateManyWithWhereWithoutRedTeamInput

Name Type Nullable
where GameScalarWhereInput No
data GameUpdateManyMutationInput | GameUncheckedUpdateManyWithoutFrom_Game_redTeamInput No

PlayerCreateWithoutBuildingKillsInput

Name Type Nullable
id String No
puuid String No
accountId String No
platformId String No
summonerId String No
summonerName String No
summonerLevel Int | Null Yes
profileIconId Int | Null Yes
revisionDate String No
kills PlayerKillCreateNestedManyWithoutKillerInput No
deaths PlayerKillCreateNestedManyWithoutVictimInput No
teams TeamCreateNestedManyWithoutPlayersInput No
profile ProfileCreateNestedOneWithoutPlayerInput No
monsterKills TeamMonsterKillCreateNestedManyWithoutKillerInput No
itemEvent PlayerItemEventCreateNestedManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatCreateNestedManyWithoutPlayerInput No
snapshots PlayerSnapshotCreateNestedManyWithoutPlayerInput No
wardEvents PlayerWardEventCreateNestedManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventCreateNestedManyWithoutPlayerInput No

PlayerUncheckedCreateWithoutBuildingKillsInput

Name Type Nullable
id String No
puuid String No
accountId String No
platformId String No
summonerId String No
summonerName String No
summonerLevel Int | Null Yes
profileIconId Int | Null Yes
revisionDate String No
kills PlayerKillUncheckedCreateNestedManyWithoutKillerInput No
deaths PlayerKillUncheckedCreateNestedManyWithoutVictimInput No
teams TeamUncheckedCreateNestedManyWithoutPlayersInput No
profileId String | Null Yes
monsterKills TeamMonsterKillUncheckedCreateNestedManyWithoutKillerInput No
itemEvent PlayerItemEventUncheckedCreateNestedManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatUncheckedCreateNestedManyWithoutPlayerInput No
snapshots PlayerSnapshotUncheckedCreateNestedManyWithoutPlayerInput No
wardEvents PlayerWardEventUncheckedCreateNestedManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventUncheckedCreateNestedManyWithoutPlayerInput No

PlayerCreateOrConnectWithoutBuildingKillsInput

Name Type Nullable
where PlayerWhereUniqueInput No
create PlayerCreateWithoutBuildingKillsInput | PlayerUncheckedCreateWithoutBuildingKillsInput No


PlayerUpdateWithWhereUniqueWithoutBuildingKillsInput

Name Type Nullable
where PlayerWhereUniqueInput No
data PlayerUpdateWithoutBuildingKillsInput | PlayerUncheckedUpdateWithoutBuildingKillsInput No

PlayerUpdateManyWithWhereWithoutBuildingKillsInput

Name Type Nullable
where PlayerScalarWhereInput No
data PlayerUpdateManyMutationInput | PlayerUncheckedUpdateManyWithoutKillerInput No

PlayerCreateWithoutMonsterKillsInput

Name Type Nullable
id String No
puuid String No
accountId String No
platformId String No
summonerId String No
summonerName String No
summonerLevel Int | Null Yes
profileIconId Int | Null Yes
revisionDate String No
kills PlayerKillCreateNestedManyWithoutKillerInput No
deaths PlayerKillCreateNestedManyWithoutVictimInput No
teams TeamCreateNestedManyWithoutPlayersInput No
profile ProfileCreateNestedOneWithoutPlayerInput No
buildingKills TeamBuildingKillCreateNestedManyWithoutKillerInput No
itemEvent PlayerItemEventCreateNestedManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatCreateNestedManyWithoutPlayerInput No
snapshots PlayerSnapshotCreateNestedManyWithoutPlayerInput No
wardEvents PlayerWardEventCreateNestedManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventCreateNestedManyWithoutPlayerInput No

PlayerUncheckedCreateWithoutMonsterKillsInput

Name Type Nullable
id String No
puuid String No
accountId String No
platformId String No
summonerId String No
summonerName String No
summonerLevel Int | Null Yes
profileIconId Int | Null Yes
revisionDate String No
kills PlayerKillUncheckedCreateNestedManyWithoutKillerInput No
deaths PlayerKillUncheckedCreateNestedManyWithoutVictimInput No
teams TeamUncheckedCreateNestedManyWithoutPlayersInput No
profileId String | Null Yes
buildingKills TeamBuildingKillUncheckedCreateNestedManyWithoutKillerInput No
itemEvent PlayerItemEventUncheckedCreateNestedManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatUncheckedCreateNestedManyWithoutPlayerInput No
snapshots PlayerSnapshotUncheckedCreateNestedManyWithoutPlayerInput No
wardEvents PlayerWardEventUncheckedCreateNestedManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventUncheckedCreateNestedManyWithoutPlayerInput No

PlayerCreateOrConnectWithoutMonsterKillsInput

Name Type Nullable
where PlayerWhereUniqueInput No
create PlayerCreateWithoutMonsterKillsInput | PlayerUncheckedCreateWithoutMonsterKillsInput No


PlayerUpdateWithWhereUniqueWithoutMonsterKillsInput

Name Type Nullable
where PlayerWhereUniqueInput No
data PlayerUpdateWithoutMonsterKillsInput | PlayerUncheckedUpdateWithoutMonsterKillsInput No

PlayerUpdateManyWithWhereWithoutMonsterKillsInput

Name Type Nullable
where PlayerScalarWhereInput No
data PlayerUpdateManyMutationInput | PlayerUncheckedUpdateManyWithoutKillerInput No

RuneStyleCreateWithoutSelectionInput

Name Type Nullable
id String No
playerRunes PlayerRuneCreateNestedOneWithoutRuneStyleInput No
description String No
style Int | Null Yes

RuneStyleUncheckedCreateWithoutSelectionInput

Name Type Nullable
id String No
playerRunesId String | Null Yes
description String No
style Int | Null Yes

RuneStyleCreateOrConnectWithoutSelectionInput

Name Type Nullable
where RuneStyleWhereUniqueInput No
create RuneStyleCreateWithoutSelectionInput | RuneStyleUncheckedCreateWithoutSelectionInput No


RuneStyleUpdateWithoutSelectionInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
playerRunes PlayerRuneUpdateOneWithoutRuneStyleInput No
description String | StringFieldUpdateOperationsInput No
style Int | NullableIntFieldUpdateOperationsInput | Null Yes

RuneStyleUncheckedUpdateWithoutSelectionInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
playerRunesId String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | StringFieldUpdateOperationsInput No
style Int | NullableIntFieldUpdateOperationsInput | Null Yes

PlayerRuneCreateWithoutRuneStyleInput

Name Type Nullable
id String No
playerEndOfGameStat PlayerEndOfGameStatCreateNestedOneWithoutPerksInput No
defense Int | Null Yes
flex Int | Null Yes
offense Int | Null Yes

PlayerRuneUncheckedCreateWithoutRuneStyleInput

Name Type Nullable
id String No
playerEndOfGameStat PlayerEndOfGameStatUncheckedCreateNestedOneWithoutPerksInput No
defense Int | Null Yes
flex Int | Null Yes
offense Int | Null Yes

PlayerRuneCreateOrConnectWithoutRuneStyleInput

Name Type Nullable
where PlayerRuneWhereUniqueInput No
create PlayerRuneCreateWithoutRuneStyleInput | PlayerRuneUncheckedCreateWithoutRuneStyleInput No

RuneSelectionCreateWithoutRuneStyleInput

Name Type Nullable
id String No
perk Int | Null Yes
var1 Int | Null Yes
var2 Int | Null Yes
var3 Int | Null Yes

RuneSelectionUncheckedCreateWithoutRuneStyleInput

Name Type Nullable
id String No
perk Int | Null Yes
var1 Int | Null Yes
var2 Int | Null Yes
var3 Int | Null Yes

RuneSelectionCreateOrConnectWithoutRuneStyleInput

Name Type Nullable
where RuneSelectionWhereUniqueInput No
create RuneSelectionCreateWithoutRuneStyleInput | RuneSelectionUncheckedCreateWithoutRuneStyleInput No

RuneSelectionCreateManyRuneStyleInputEnvelope

Name Type Nullable
data RuneSelectionCreateManyRuneStyleInput[] No
skipDuplicates Boolean No


PlayerRuneUpdateWithoutRuneStyleInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
playerEndOfGameStat PlayerEndOfGameStatUpdateOneWithoutPerksInput No
defense Int | NullableIntFieldUpdateOperationsInput | Null Yes
flex Int | NullableIntFieldUpdateOperationsInput | Null Yes
offense Int | NullableIntFieldUpdateOperationsInput | Null Yes

PlayerRuneUncheckedUpdateWithoutRuneStyleInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
playerEndOfGameStat PlayerEndOfGameStatUncheckedUpdateOneWithoutPerksInput No
defense Int | NullableIntFieldUpdateOperationsInput | Null Yes
flex Int | NullableIntFieldUpdateOperationsInput | Null Yes
offense Int | NullableIntFieldUpdateOperationsInput | Null Yes


RuneSelectionUpdateWithWhereUniqueWithoutRuneStyleInput

Name Type Nullable
where RuneSelectionWhereUniqueInput No
data RuneSelectionUpdateWithoutRuneStyleInput | RuneSelectionUncheckedUpdateWithoutRuneStyleInput No

RuneSelectionUpdateManyWithWhereWithoutRuneStyleInput

Name Type Nullable
where RuneSelectionScalarWhereInput No
data RuneSelectionUpdateManyMutationInput | RuneSelectionUncheckedUpdateManyWithoutSelectionInput No

RuneSelectionScalarWhereInput

Name Type Nullable
AND RuneSelectionScalarWhereInput | RuneSelectionScalarWhereInput[] No
OR RuneSelectionScalarWhereInput[] No
NOT RuneSelectionScalarWhereInput | RuneSelectionScalarWhereInput[] No
id StringFilter | String No
runeStyleId StringNullableFilter | String | Null Yes
perk IntNullableFilter | Int | Null Yes
var1 IntNullableFilter | Int | Null Yes
var2 IntNullableFilter | Int | Null Yes
var3 IntNullableFilter | Int | Null Yes

PositionUpdateWithoutEventInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
x Int | NullableIntFieldUpdateOperationsInput | Null Yes
y Int | NullableIntFieldUpdateOperationsInput | Null Yes
playerSnapshot PlayerSnapshotUpdateManyWithoutPositionInput No

PositionUncheckedUpdateWithoutEventInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
x Int | NullableIntFieldUpdateOperationsInput | Null Yes
y Int | NullableIntFieldUpdateOperationsInput | Null Yes
playerSnapshot PlayerSnapshotUncheckedUpdateManyWithoutPositionInput No

PositionUncheckedUpdateManyWithoutPositionInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
x Int | NullableIntFieldUpdateOperationsInput | Null Yes
y Int | NullableIntFieldUpdateOperationsInput | Null Yes

PlayerEndOfGameStatCreateManyGameInput

Name Type Nullable
id String No
playerId String | Null Yes
perksId String | Null Yes
itemsId String | Null Yes
assists Int | Null Yes
baronKills Int | Null Yes
bountyLevel Int | Null Yes
championExperience Int | Null Yes
championLevel Int | Null Yes
championId Int | Null Yes
championName String No
championTransform Int | Null Yes
consumablesPurchased Int | Null Yes
damageDealtToBuildings Int | Null Yes
damageDealtToObjectives Int | Null Yes
damageDealtToTurrets Int | Null Yes
damageSelfMitigated Int | Null Yes
deaths Int | Null Yes
detectorWardsPlaced Int | Null Yes
doubleKills Int | Null Yes
dragonKills Int | Null Yes
firstBlood Boolean No
firstBloodAssist Boolean No
firstTowerKill Boolean No
firstTowerAssist Boolean No
gameEndedInEarlySurrender Boolean No
gameEndedInSurrender Boolean No
goldEarned Int | Null Yes
goldSpent Int | Null Yes
individualPosition String No
inhibitorKills Int | Null Yes
inhibitorTakedowns Int | Null Yes
inhibitorsLost Int | Null Yes
item0 Int | Null Yes
item1 Int | Null Yes
item2 Int | Null Yes
item3 Int | Null Yes
item4 Int | Null Yes
item5 Int | Null Yes
item6 Int | Null Yes
itemsPurchased Int | Null Yes
killingSprees Int | Null Yes
kills Int | Null Yes
lane String No
largestCriticalStrike Int | Null Yes
largestKillingSpree Int | Null Yes
largestMultiKill Int | Null Yes
longestTimeSpentLiving Int | Null Yes
magicDamageDealt Int | Null Yes
magicDamageDealtToChampions Int | Null Yes
magicDamageTaken Int | Null Yes
neutralMinionsKilled Int | Null Yes
nexusKills Int | Null Yes
nexusLost Int | Null Yes
nexusTakedowns Int | Null Yes
objectivesStolen Int | Null Yes
objectivesStolenAssists Int | Null Yes
participantId Int | Null Yes
pentaKills Int | Null Yes
physicalDamageDealt Int | Null Yes
physicalDamageDealtToChampions Int | Null Yes
physicalDamageTaken Int | Null Yes
quadraKills Int | Null Yes
riotIdName String No
riotIdTagline String No
role String No
sightWardsBoughtInGame Int | Null Yes
spell1Casts Int | Null Yes
spell2Casts Int | Null Yes
spell3Casts Int | Null Yes
spell4Casts Int | Null Yes
summoner1Casts Int | Null Yes
summoner1Id Int | Null Yes
summoner2Casts Int | Null Yes
summoner2Id Int | Null Yes
summonerLevel Int | Null Yes
summonerName String No
teamEarlySurrendered Boolean No
teamId Int | Null Yes
teamPosition String No
timeCCingOthers Int | Null Yes
timePlayed Int | Null Yes
totalDamageDealt Int | Null Yes
totalDamageDealtToChampions Int | Null Yes
totalDamageShieldedOnTeammates Int | Null Yes
totalDamageTaken Int | Null Yes
totalHeal Int | Null Yes
totalHealsOnTeammates Int | Null Yes
totalMinionsKilled Int | Null Yes
totalTimeCCDealt Int | Null Yes
totalTimeSpentDead Int | Null Yes
totalUnitsHealed Int | Null Yes
tripleKills Int | Null Yes
trueDamageDealt Int | Null Yes
trueDamageDealtToChampions Int | Null Yes
trueDamageTaken Int | Null Yes
turretsKilled Int | Null Yes
turretTakedowns Int | Null Yes
turretsLost Int | Null Yes
unrealKills Int | Null Yes
visionScore Int | Null Yes
visionWardsBoughtInGame Int | Null Yes
wardsKilled Int | Null Yes
wardsPlaced Int | Null Yes
win Boolean No

TeamCreateManyGameInput

Name Type Nullable
id String No
teamId Int | Null Yes
teamMatchId String No
win Boolean No

SourceUpdateWithoutGameInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
api String | StringFieldUpdateOperationsInput No

SourceUncheckedUpdateWithoutGameInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
api String | StringFieldUpdateOperationsInput No

SourceUncheckedUpdateManyWithoutSourceInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
api String | StringFieldUpdateOperationsInput No

PlayerEndOfGameStatUpdateWithoutGameInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
player PlayerUpdateOneWithoutEndOfGameStatsInput No
perks PlayerRuneUpdateOneWithoutPlayerEndOfGameStatInput No
items PlayerItemUpdateOneWithoutPlayerEndOfGameStatInput No
assists Int | NullableIntFieldUpdateOperationsInput | Null Yes
baronKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
bountyLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
championExperience Int | NullableIntFieldUpdateOperationsInput | Null Yes
championLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
championId Int | NullableIntFieldUpdateOperationsInput | Null Yes
championName String | StringFieldUpdateOperationsInput No
championTransform Int | NullableIntFieldUpdateOperationsInput | Null Yes
consumablesPurchased Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToBuildings Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToObjectives Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToTurrets Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageSelfMitigated Int | NullableIntFieldUpdateOperationsInput | Null Yes
deaths Int | NullableIntFieldUpdateOperationsInput | Null Yes
detectorWardsPlaced Int | NullableIntFieldUpdateOperationsInput | Null Yes
doubleKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
dragonKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
firstBlood Boolean | BoolFieldUpdateOperationsInput No
firstBloodAssist Boolean | BoolFieldUpdateOperationsInput No
firstTowerKill Boolean | BoolFieldUpdateOperationsInput No
firstTowerAssist Boolean | BoolFieldUpdateOperationsInput No
gameEndedInEarlySurrender Boolean | BoolFieldUpdateOperationsInput No
gameEndedInSurrender Boolean | BoolFieldUpdateOperationsInput No
goldEarned Int | NullableIntFieldUpdateOperationsInput | Null Yes
goldSpent Int | NullableIntFieldUpdateOperationsInput | Null Yes
individualPosition String | StringFieldUpdateOperationsInput No
inhibitorKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
inhibitorTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
inhibitorsLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
item0 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item1 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item2 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item3 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item4 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item5 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item6 Int | NullableIntFieldUpdateOperationsInput | Null Yes
itemsPurchased Int | NullableIntFieldUpdateOperationsInput | Null Yes
killingSprees Int | NullableIntFieldUpdateOperationsInput | Null Yes
kills Int | NullableIntFieldUpdateOperationsInput | Null Yes
lane String | StringFieldUpdateOperationsInput No
largestCriticalStrike Int | NullableIntFieldUpdateOperationsInput | Null Yes
largestKillingSpree Int | NullableIntFieldUpdateOperationsInput | Null Yes
largestMultiKill Int | NullableIntFieldUpdateOperationsInput | Null Yes
longestTimeSpentLiving Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
neutralMinionsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
objectivesStolen Int | NullableIntFieldUpdateOperationsInput | Null Yes
objectivesStolenAssists Int | NullableIntFieldUpdateOperationsInput | Null Yes
participantId Int | NullableIntFieldUpdateOperationsInput | Null Yes
pentaKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
quadraKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
riotIdName String | StringFieldUpdateOperationsInput No
riotIdTagline String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
sightWardsBoughtInGame Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell1Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell2Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell3Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell4Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner1Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner1Id Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner2Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner2Id Int | NullableIntFieldUpdateOperationsInput | Null Yes
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
summonerName String | StringFieldUpdateOperationsInput No
teamEarlySurrendered Boolean | BoolFieldUpdateOperationsInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
teamPosition String | StringFieldUpdateOperationsInput No
timeCCingOthers Int | NullableIntFieldUpdateOperationsInput | Null Yes
timePlayed Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageShieldedOnTeammates Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalHeal Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalHealsOnTeammates Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalMinionsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalTimeCCDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalTimeSpentDead Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalUnitsHealed Int | NullableIntFieldUpdateOperationsInput | Null Yes
tripleKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretsLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
unrealKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
visionScore Int | NullableIntFieldUpdateOperationsInput | Null Yes
visionWardsBoughtInGame Int | NullableIntFieldUpdateOperationsInput | Null Yes
wardsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
wardsPlaced Int | NullableIntFieldUpdateOperationsInput | Null Yes
win Boolean | BoolFieldUpdateOperationsInput No

PlayerEndOfGameStatUncheckedUpdateWithoutGameInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
playerId String | NullableStringFieldUpdateOperationsInput | Null Yes
perksId String | NullableStringFieldUpdateOperationsInput | Null Yes
itemsId String | NullableStringFieldUpdateOperationsInput | Null Yes
assists Int | NullableIntFieldUpdateOperationsInput | Null Yes
baronKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
bountyLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
championExperience Int | NullableIntFieldUpdateOperationsInput | Null Yes
championLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
championId Int | NullableIntFieldUpdateOperationsInput | Null Yes
championName String | StringFieldUpdateOperationsInput No
championTransform Int | NullableIntFieldUpdateOperationsInput | Null Yes
consumablesPurchased Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToBuildings Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToObjectives Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToTurrets Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageSelfMitigated Int | NullableIntFieldUpdateOperationsInput | Null Yes
deaths Int | NullableIntFieldUpdateOperationsInput | Null Yes
detectorWardsPlaced Int | NullableIntFieldUpdateOperationsInput | Null Yes
doubleKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
dragonKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
firstBlood Boolean | BoolFieldUpdateOperationsInput No
firstBloodAssist Boolean | BoolFieldUpdateOperationsInput No
firstTowerKill Boolean | BoolFieldUpdateOperationsInput No
firstTowerAssist Boolean | BoolFieldUpdateOperationsInput No
gameEndedInEarlySurrender Boolean | BoolFieldUpdateOperationsInput No
gameEndedInSurrender Boolean | BoolFieldUpdateOperationsInput No
goldEarned Int | NullableIntFieldUpdateOperationsInput | Null Yes
goldSpent Int | NullableIntFieldUpdateOperationsInput | Null Yes
individualPosition String | StringFieldUpdateOperationsInput No
inhibitorKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
inhibitorTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
inhibitorsLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
item0 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item1 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item2 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item3 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item4 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item5 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item6 Int | NullableIntFieldUpdateOperationsInput | Null Yes
itemsPurchased Int | NullableIntFieldUpdateOperationsInput | Null Yes
killingSprees Int | NullableIntFieldUpdateOperationsInput | Null Yes
kills Int | NullableIntFieldUpdateOperationsInput | Null Yes
lane String | StringFieldUpdateOperationsInput No
largestCriticalStrike Int | NullableIntFieldUpdateOperationsInput | Null Yes
largestKillingSpree Int | NullableIntFieldUpdateOperationsInput | Null Yes
largestMultiKill Int | NullableIntFieldUpdateOperationsInput | Null Yes
longestTimeSpentLiving Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
neutralMinionsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
objectivesStolen Int | NullableIntFieldUpdateOperationsInput | Null Yes
objectivesStolenAssists Int | NullableIntFieldUpdateOperationsInput | Null Yes
participantId Int | NullableIntFieldUpdateOperationsInput | Null Yes
pentaKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
quadraKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
riotIdName String | StringFieldUpdateOperationsInput No
riotIdTagline String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
sightWardsBoughtInGame Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell1Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell2Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell3Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell4Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner1Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner1Id Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner2Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner2Id Int | NullableIntFieldUpdateOperationsInput | Null Yes
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
summonerName String | StringFieldUpdateOperationsInput No
teamEarlySurrendered Boolean | BoolFieldUpdateOperationsInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
teamPosition String | StringFieldUpdateOperationsInput No
timeCCingOthers Int | NullableIntFieldUpdateOperationsInput | Null Yes
timePlayed Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageShieldedOnTeammates Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalHeal Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalHealsOnTeammates Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalMinionsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalTimeCCDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalTimeSpentDead Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalUnitsHealed Int | NullableIntFieldUpdateOperationsInput | Null Yes
tripleKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretsLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
unrealKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
visionScore Int | NullableIntFieldUpdateOperationsInput | Null Yes
visionWardsBoughtInGame Int | NullableIntFieldUpdateOperationsInput | Null Yes
wardsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
wardsPlaced Int | NullableIntFieldUpdateOperationsInput | Null Yes
win Boolean | BoolFieldUpdateOperationsInput No

PlayerEndOfGameStatUncheckedUpdateManyWithoutFrom_PlayerEndOfGameStat_gameInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
playerId String | NullableStringFieldUpdateOperationsInput | Null Yes
perksId String | NullableStringFieldUpdateOperationsInput | Null Yes
itemsId String | NullableStringFieldUpdateOperationsInput | Null Yes
assists Int | NullableIntFieldUpdateOperationsInput | Null Yes
baronKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
bountyLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
championExperience Int | NullableIntFieldUpdateOperationsInput | Null Yes
championLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
championId Int | NullableIntFieldUpdateOperationsInput | Null Yes
championName String | StringFieldUpdateOperationsInput No
championTransform Int | NullableIntFieldUpdateOperationsInput | Null Yes
consumablesPurchased Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToBuildings Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToObjectives Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToTurrets Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageSelfMitigated Int | NullableIntFieldUpdateOperationsInput | Null Yes
deaths Int | NullableIntFieldUpdateOperationsInput | Null Yes
detectorWardsPlaced Int | NullableIntFieldUpdateOperationsInput | Null Yes
doubleKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
dragonKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
firstBlood Boolean | BoolFieldUpdateOperationsInput No
firstBloodAssist Boolean | BoolFieldUpdateOperationsInput No
firstTowerKill Boolean | BoolFieldUpdateOperationsInput No
firstTowerAssist Boolean | BoolFieldUpdateOperationsInput No
gameEndedInEarlySurrender Boolean | BoolFieldUpdateOperationsInput No
gameEndedInSurrender Boolean | BoolFieldUpdateOperationsInput No
goldEarned Int | NullableIntFieldUpdateOperationsInput | Null Yes
goldSpent Int | NullableIntFieldUpdateOperationsInput | Null Yes
individualPosition String | StringFieldUpdateOperationsInput No
inhibitorKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
inhibitorTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
inhibitorsLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
item0 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item1 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item2 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item3 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item4 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item5 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item6 Int | NullableIntFieldUpdateOperationsInput | Null Yes
itemsPurchased Int | NullableIntFieldUpdateOperationsInput | Null Yes
killingSprees Int | NullableIntFieldUpdateOperationsInput | Null Yes
kills Int | NullableIntFieldUpdateOperationsInput | Null Yes
lane String | StringFieldUpdateOperationsInput No
largestCriticalStrike Int | NullableIntFieldUpdateOperationsInput | Null Yes
largestKillingSpree Int | NullableIntFieldUpdateOperationsInput | Null Yes
largestMultiKill Int | NullableIntFieldUpdateOperationsInput | Null Yes
longestTimeSpentLiving Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
neutralMinionsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
objectivesStolen Int | NullableIntFieldUpdateOperationsInput | Null Yes
objectivesStolenAssists Int | NullableIntFieldUpdateOperationsInput | Null Yes
participantId Int | NullableIntFieldUpdateOperationsInput | Null Yes
pentaKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
quadraKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
riotIdName String | StringFieldUpdateOperationsInput No
riotIdTagline String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
sightWardsBoughtInGame Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell1Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell2Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell3Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell4Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner1Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner1Id Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner2Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner2Id Int | NullableIntFieldUpdateOperationsInput | Null Yes
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
summonerName String | StringFieldUpdateOperationsInput No
teamEarlySurrendered Boolean | BoolFieldUpdateOperationsInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
teamPosition String | StringFieldUpdateOperationsInput No
timeCCingOthers Int | NullableIntFieldUpdateOperationsInput | Null Yes
timePlayed Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageShieldedOnTeammates Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalHeal Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalHealsOnTeammates Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalMinionsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalTimeCCDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalTimeSpentDead Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalUnitsHealed Int | NullableIntFieldUpdateOperationsInput | Null Yes
tripleKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretsLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
unrealKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
visionScore Int | NullableIntFieldUpdateOperationsInput | Null Yes
visionWardsBoughtInGame Int | NullableIntFieldUpdateOperationsInput | Null Yes
wardsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
wardsPlaced Int | NullableIntFieldUpdateOperationsInput | Null Yes
win Boolean | BoolFieldUpdateOperationsInput No

TeamUpdateWithoutGameInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
pickBan PickBanUpdateManyWithoutTeamInput No
players PlayerUpdateManyWithoutTeamsInput No
objectives ObjectiveUpdateManyWithoutTeamInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
teamMatchId String | StringFieldUpdateOperationsInput No
win Boolean | BoolFieldUpdateOperationsInput No
from_Game_blueTeam GameUpdateManyWithoutBlueTeamInput No
from_Game_redTeam GameUpdateManyWithoutRedTeamInput No


TeamUncheckedUpdateManyWithoutFrom_Team_gameInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
teamMatchId String | StringFieldUpdateOperationsInput No
win Boolean | BoolFieldUpdateOperationsInput No

PlayerEndOfGameStatCreateManyPlayerInput

Name Type Nullable
id String No
gameId String | Null Yes
perksId String | Null Yes
itemsId String | Null Yes
assists Int | Null Yes
baronKills Int | Null Yes
bountyLevel Int | Null Yes
championExperience Int | Null Yes
championLevel Int | Null Yes
championId Int | Null Yes
championName String No
championTransform Int | Null Yes
consumablesPurchased Int | Null Yes
damageDealtToBuildings Int | Null Yes
damageDealtToObjectives Int | Null Yes
damageDealtToTurrets Int | Null Yes
damageSelfMitigated Int | Null Yes
deaths Int | Null Yes
detectorWardsPlaced Int | Null Yes
doubleKills Int | Null Yes
dragonKills Int | Null Yes
firstBlood Boolean No
firstBloodAssist Boolean No
firstTowerKill Boolean No
firstTowerAssist Boolean No
gameEndedInEarlySurrender Boolean No
gameEndedInSurrender Boolean No
goldEarned Int | Null Yes
goldSpent Int | Null Yes
individualPosition String No
inhibitorKills Int | Null Yes
inhibitorTakedowns Int | Null Yes
inhibitorsLost Int | Null Yes
item0 Int | Null Yes
item1 Int | Null Yes
item2 Int | Null Yes
item3 Int | Null Yes
item4 Int | Null Yes
item5 Int | Null Yes
item6 Int | Null Yes
itemsPurchased Int | Null Yes
killingSprees Int | Null Yes
kills Int | Null Yes
lane String No
largestCriticalStrike Int | Null Yes
largestKillingSpree Int | Null Yes
largestMultiKill Int | Null Yes
longestTimeSpentLiving Int | Null Yes
magicDamageDealt Int | Null Yes
magicDamageDealtToChampions Int | Null Yes
magicDamageTaken Int | Null Yes
neutralMinionsKilled Int | Null Yes
nexusKills Int | Null Yes
nexusLost Int | Null Yes
nexusTakedowns Int | Null Yes
objectivesStolen Int | Null Yes
objectivesStolenAssists Int | Null Yes
participantId Int | Null Yes
pentaKills Int | Null Yes
physicalDamageDealt Int | Null Yes
physicalDamageDealtToChampions Int | Null Yes
physicalDamageTaken Int | Null Yes
quadraKills Int | Null Yes
riotIdName String No
riotIdTagline String No
role String No
sightWardsBoughtInGame Int | Null Yes
spell1Casts Int | Null Yes
spell2Casts Int | Null Yes
spell3Casts Int | Null Yes
spell4Casts Int | Null Yes
summoner1Casts Int | Null Yes
summoner1Id Int | Null Yes
summoner2Casts Int | Null Yes
summoner2Id Int | Null Yes
summonerLevel Int | Null Yes
summonerName String No
teamEarlySurrendered Boolean No
teamId Int | Null Yes
teamPosition String No
timeCCingOthers Int | Null Yes
timePlayed Int | Null Yes
totalDamageDealt Int | Null Yes
totalDamageDealtToChampions Int | Null Yes
totalDamageShieldedOnTeammates Int | Null Yes
totalDamageTaken Int | Null Yes
totalHeal Int | Null Yes
totalHealsOnTeammates Int | Null Yes
totalMinionsKilled Int | Null Yes
totalTimeCCDealt Int | Null Yes
totalTimeSpentDead Int | Null Yes
totalUnitsHealed Int | Null Yes
tripleKills Int | Null Yes
trueDamageDealt Int | Null Yes
trueDamageDealtToChampions Int | Null Yes
trueDamageTaken Int | Null Yes
turretsKilled Int | Null Yes
turretTakedowns Int | Null Yes
turretsLost Int | Null Yes
unrealKills Int | Null Yes
visionScore Int | Null Yes
visionWardsBoughtInGame Int | Null Yes
wardsKilled Int | Null Yes
wardsPlaced Int | Null Yes
win Boolean No

PlayerKillUpdateWithoutKillerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
victim PlayerUpdateManyWithoutDeathsInput No

PlayerKillUncheckedUpdateWithoutKillerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
victim PlayerUncheckedUpdateManyWithoutDeathsInput No

PlayerKillUncheckedUpdateManyWithoutKillsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No

PlayerKillUpdateWithoutVictimInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
killer PlayerUpdateManyWithoutKillsInput No

PlayerKillUncheckedUpdateWithoutVictimInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
killer PlayerUncheckedUpdateManyWithoutKillsInput No

PlayerKillUncheckedUpdateManyWithoutDeathsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No

TeamUpdateWithoutPlayersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
pickBan PickBanUpdateManyWithoutTeamInput No
game GameUpdateOneWithoutFrom_Team_gameInput No
objectives ObjectiveUpdateManyWithoutTeamInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
teamMatchId String | StringFieldUpdateOperationsInput No
win Boolean | BoolFieldUpdateOperationsInput No
from_Game_blueTeam GameUpdateManyWithoutBlueTeamInput No
from_Game_redTeam GameUpdateManyWithoutRedTeamInput No

TeamUncheckedUpdateWithoutPlayersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
pickBan PickBanUncheckedUpdateManyWithoutTeamInput No
gameId String | NullableStringFieldUpdateOperationsInput | Null Yes
objectives ObjectiveUncheckedUpdateManyWithoutTeamInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
teamMatchId String | StringFieldUpdateOperationsInput No
win Boolean | BoolFieldUpdateOperationsInput No
from_Game_blueTeam GameUncheckedUpdateManyWithoutBlueTeamInput No
from_Game_redTeam GameUncheckedUpdateManyWithoutRedTeamInput No

TeamUncheckedUpdateManyWithoutTeamsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
gameId String | NullableStringFieldUpdateOperationsInput | Null Yes
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
teamMatchId String | StringFieldUpdateOperationsInput No
win Boolean | BoolFieldUpdateOperationsInput No

TeamMonsterKillUpdateWithoutKillerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
subType String | StringFieldUpdateOperationsInput No

TeamMonsterKillUncheckedUpdateWithoutKillerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
subType String | StringFieldUpdateOperationsInput No

TeamMonsterKillUncheckedUpdateManyWithoutMonsterKillsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
subType String | StringFieldUpdateOperationsInput No

TeamBuildingKillUpdateWithoutKillerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
lane String | StringFieldUpdateOperationsInput No
side String | StringFieldUpdateOperationsInput No
towerLocation String | StringFieldUpdateOperationsInput No

TeamBuildingKillUncheckedUpdateWithoutKillerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
lane String | StringFieldUpdateOperationsInput No
side String | StringFieldUpdateOperationsInput No
towerLocation String | StringFieldUpdateOperationsInput No

TeamBuildingKillUncheckedUpdateManyWithoutBuildingKillsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
lane String | StringFieldUpdateOperationsInput No
side String | StringFieldUpdateOperationsInput No
towerLocation String | StringFieldUpdateOperationsInput No

PlayerItemEventUpdateWithoutPlayerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
itemId Int | NullableIntFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
undoId Int | NullableIntFieldUpdateOperationsInput | Null Yes

PlayerItemEventUncheckedUpdateWithoutPlayerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
itemId Int | NullableIntFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
undoId Int | NullableIntFieldUpdateOperationsInput | Null Yes

PlayerItemEventUncheckedUpdateManyWithoutItemEventInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
itemId Int | NullableIntFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
undoId Int | NullableIntFieldUpdateOperationsInput | Null Yes

PlayerEndOfGameStatUpdateWithoutPlayerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
game GameUpdateOneWithoutFrom_PlayerEndOfGameStat_gameInput No
perks PlayerRuneUpdateOneWithoutPlayerEndOfGameStatInput No
items PlayerItemUpdateOneWithoutPlayerEndOfGameStatInput No
assists Int | NullableIntFieldUpdateOperationsInput | Null Yes
baronKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
bountyLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
championExperience Int | NullableIntFieldUpdateOperationsInput | Null Yes
championLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
championId Int | NullableIntFieldUpdateOperationsInput | Null Yes
championName String | StringFieldUpdateOperationsInput No
championTransform Int | NullableIntFieldUpdateOperationsInput | Null Yes
consumablesPurchased Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToBuildings Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToObjectives Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToTurrets Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageSelfMitigated Int | NullableIntFieldUpdateOperationsInput | Null Yes
deaths Int | NullableIntFieldUpdateOperationsInput | Null Yes
detectorWardsPlaced Int | NullableIntFieldUpdateOperationsInput | Null Yes
doubleKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
dragonKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
firstBlood Boolean | BoolFieldUpdateOperationsInput No
firstBloodAssist Boolean | BoolFieldUpdateOperationsInput No
firstTowerKill Boolean | BoolFieldUpdateOperationsInput No
firstTowerAssist Boolean | BoolFieldUpdateOperationsInput No
gameEndedInEarlySurrender Boolean | BoolFieldUpdateOperationsInput No
gameEndedInSurrender Boolean | BoolFieldUpdateOperationsInput No
goldEarned Int | NullableIntFieldUpdateOperationsInput | Null Yes
goldSpent Int | NullableIntFieldUpdateOperationsInput | Null Yes
individualPosition String | StringFieldUpdateOperationsInput No
inhibitorKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
inhibitorTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
inhibitorsLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
item0 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item1 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item2 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item3 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item4 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item5 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item6 Int | NullableIntFieldUpdateOperationsInput | Null Yes
itemsPurchased Int | NullableIntFieldUpdateOperationsInput | Null Yes
killingSprees Int | NullableIntFieldUpdateOperationsInput | Null Yes
kills Int | NullableIntFieldUpdateOperationsInput | Null Yes
lane String | StringFieldUpdateOperationsInput No
largestCriticalStrike Int | NullableIntFieldUpdateOperationsInput | Null Yes
largestKillingSpree Int | NullableIntFieldUpdateOperationsInput | Null Yes
largestMultiKill Int | NullableIntFieldUpdateOperationsInput | Null Yes
longestTimeSpentLiving Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
neutralMinionsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
objectivesStolen Int | NullableIntFieldUpdateOperationsInput | Null Yes
objectivesStolenAssists Int | NullableIntFieldUpdateOperationsInput | Null Yes
participantId Int | NullableIntFieldUpdateOperationsInput | Null Yes
pentaKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
quadraKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
riotIdName String | StringFieldUpdateOperationsInput No
riotIdTagline String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
sightWardsBoughtInGame Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell1Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell2Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell3Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell4Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner1Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner1Id Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner2Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner2Id Int | NullableIntFieldUpdateOperationsInput | Null Yes
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
summonerName String | StringFieldUpdateOperationsInput No
teamEarlySurrendered Boolean | BoolFieldUpdateOperationsInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
teamPosition String | StringFieldUpdateOperationsInput No
timeCCingOthers Int | NullableIntFieldUpdateOperationsInput | Null Yes
timePlayed Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageShieldedOnTeammates Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalHeal Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalHealsOnTeammates Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalMinionsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalTimeCCDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalTimeSpentDead Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalUnitsHealed Int | NullableIntFieldUpdateOperationsInput | Null Yes
tripleKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretsLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
unrealKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
visionScore Int | NullableIntFieldUpdateOperationsInput | Null Yes
visionWardsBoughtInGame Int | NullableIntFieldUpdateOperationsInput | Null Yes
wardsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
wardsPlaced Int | NullableIntFieldUpdateOperationsInput | Null Yes
win Boolean | BoolFieldUpdateOperationsInput No

PlayerEndOfGameStatUncheckedUpdateWithoutPlayerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
gameId String | NullableStringFieldUpdateOperationsInput | Null Yes
perksId String | NullableStringFieldUpdateOperationsInput | Null Yes
itemsId String | NullableStringFieldUpdateOperationsInput | Null Yes
assists Int | NullableIntFieldUpdateOperationsInput | Null Yes
baronKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
bountyLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
championExperience Int | NullableIntFieldUpdateOperationsInput | Null Yes
championLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
championId Int | NullableIntFieldUpdateOperationsInput | Null Yes
championName String | StringFieldUpdateOperationsInput No
championTransform Int | NullableIntFieldUpdateOperationsInput | Null Yes
consumablesPurchased Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToBuildings Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToObjectives Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToTurrets Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageSelfMitigated Int | NullableIntFieldUpdateOperationsInput | Null Yes
deaths Int | NullableIntFieldUpdateOperationsInput | Null Yes
detectorWardsPlaced Int | NullableIntFieldUpdateOperationsInput | Null Yes
doubleKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
dragonKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
firstBlood Boolean | BoolFieldUpdateOperationsInput No
firstBloodAssist Boolean | BoolFieldUpdateOperationsInput No
firstTowerKill Boolean | BoolFieldUpdateOperationsInput No
firstTowerAssist Boolean | BoolFieldUpdateOperationsInput No
gameEndedInEarlySurrender Boolean | BoolFieldUpdateOperationsInput No
gameEndedInSurrender Boolean | BoolFieldUpdateOperationsInput No
goldEarned Int | NullableIntFieldUpdateOperationsInput | Null Yes
goldSpent Int | NullableIntFieldUpdateOperationsInput | Null Yes
individualPosition String | StringFieldUpdateOperationsInput No
inhibitorKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
inhibitorTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
inhibitorsLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
item0 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item1 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item2 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item3 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item4 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item5 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item6 Int | NullableIntFieldUpdateOperationsInput | Null Yes
itemsPurchased Int | NullableIntFieldUpdateOperationsInput | Null Yes
killingSprees Int | NullableIntFieldUpdateOperationsInput | Null Yes
kills Int | NullableIntFieldUpdateOperationsInput | Null Yes
lane String | StringFieldUpdateOperationsInput No
largestCriticalStrike Int | NullableIntFieldUpdateOperationsInput | Null Yes
largestKillingSpree Int | NullableIntFieldUpdateOperationsInput | Null Yes
largestMultiKill Int | NullableIntFieldUpdateOperationsInput | Null Yes
longestTimeSpentLiving Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
neutralMinionsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
objectivesStolen Int | NullableIntFieldUpdateOperationsInput | Null Yes
objectivesStolenAssists Int | NullableIntFieldUpdateOperationsInput | Null Yes
participantId Int | NullableIntFieldUpdateOperationsInput | Null Yes
pentaKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
quadraKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
riotIdName String | StringFieldUpdateOperationsInput No
riotIdTagline String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
sightWardsBoughtInGame Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell1Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell2Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell3Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell4Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner1Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner1Id Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner2Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner2Id Int | NullableIntFieldUpdateOperationsInput | Null Yes
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
summonerName String | StringFieldUpdateOperationsInput No
teamEarlySurrendered Boolean | BoolFieldUpdateOperationsInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
teamPosition String | StringFieldUpdateOperationsInput No
timeCCingOthers Int | NullableIntFieldUpdateOperationsInput | Null Yes
timePlayed Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageShieldedOnTeammates Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalHeal Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalHealsOnTeammates Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalMinionsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalTimeCCDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalTimeSpentDead Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalUnitsHealed Int | NullableIntFieldUpdateOperationsInput | Null Yes
tripleKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretsLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
unrealKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
visionScore Int | NullableIntFieldUpdateOperationsInput | Null Yes
visionWardsBoughtInGame Int | NullableIntFieldUpdateOperationsInput | Null Yes
wardsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
wardsPlaced Int | NullableIntFieldUpdateOperationsInput | Null Yes
win Boolean | BoolFieldUpdateOperationsInput No

PlayerEndOfGameStatUncheckedUpdateManyWithoutEndOfGameStatsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
gameId String | NullableStringFieldUpdateOperationsInput | Null Yes
perksId String | NullableStringFieldUpdateOperationsInput | Null Yes
itemsId String | NullableStringFieldUpdateOperationsInput | Null Yes
assists Int | NullableIntFieldUpdateOperationsInput | Null Yes
baronKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
bountyLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
championExperience Int | NullableIntFieldUpdateOperationsInput | Null Yes
championLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
championId Int | NullableIntFieldUpdateOperationsInput | Null Yes
championName String | StringFieldUpdateOperationsInput No
championTransform Int | NullableIntFieldUpdateOperationsInput | Null Yes
consumablesPurchased Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToBuildings Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToObjectives Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToTurrets Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageSelfMitigated Int | NullableIntFieldUpdateOperationsInput | Null Yes
deaths Int | NullableIntFieldUpdateOperationsInput | Null Yes
detectorWardsPlaced Int | NullableIntFieldUpdateOperationsInput | Null Yes
doubleKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
dragonKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
firstBlood Boolean | BoolFieldUpdateOperationsInput No
firstBloodAssist Boolean | BoolFieldUpdateOperationsInput No
firstTowerKill Boolean | BoolFieldUpdateOperationsInput No
firstTowerAssist Boolean | BoolFieldUpdateOperationsInput No
gameEndedInEarlySurrender Boolean | BoolFieldUpdateOperationsInput No
gameEndedInSurrender Boolean | BoolFieldUpdateOperationsInput No
goldEarned Int | NullableIntFieldUpdateOperationsInput | Null Yes
goldSpent Int | NullableIntFieldUpdateOperationsInput | Null Yes
individualPosition String | StringFieldUpdateOperationsInput No
inhibitorKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
inhibitorTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
inhibitorsLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
item0 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item1 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item2 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item3 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item4 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item5 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item6 Int | NullableIntFieldUpdateOperationsInput | Null Yes
itemsPurchased Int | NullableIntFieldUpdateOperationsInput | Null Yes
killingSprees Int | NullableIntFieldUpdateOperationsInput | Null Yes
kills Int | NullableIntFieldUpdateOperationsInput | Null Yes
lane String | StringFieldUpdateOperationsInput No
largestCriticalStrike Int | NullableIntFieldUpdateOperationsInput | Null Yes
largestKillingSpree Int | NullableIntFieldUpdateOperationsInput | Null Yes
largestMultiKill Int | NullableIntFieldUpdateOperationsInput | Null Yes
longestTimeSpentLiving Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
neutralMinionsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
objectivesStolen Int | NullableIntFieldUpdateOperationsInput | Null Yes
objectivesStolenAssists Int | NullableIntFieldUpdateOperationsInput | Null Yes
participantId Int | NullableIntFieldUpdateOperationsInput | Null Yes
pentaKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
quadraKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
riotIdName String | StringFieldUpdateOperationsInput No
riotIdTagline String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
sightWardsBoughtInGame Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell1Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell2Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell3Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell4Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner1Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner1Id Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner2Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner2Id Int | NullableIntFieldUpdateOperationsInput | Null Yes
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
summonerName String | StringFieldUpdateOperationsInput No
teamEarlySurrendered Boolean | BoolFieldUpdateOperationsInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
teamPosition String | StringFieldUpdateOperationsInput No
timeCCingOthers Int | NullableIntFieldUpdateOperationsInput | Null Yes
timePlayed Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageShieldedOnTeammates Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalHeal Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalHealsOnTeammates Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalMinionsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalTimeCCDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalTimeSpentDead Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalUnitsHealed Int | NullableIntFieldUpdateOperationsInput | Null Yes
tripleKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretsLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
unrealKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
visionScore Int | NullableIntFieldUpdateOperationsInput | Null Yes
visionWardsBoughtInGame Int | NullableIntFieldUpdateOperationsInput | Null Yes
wardsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
wardsPlaced Int | NullableIntFieldUpdateOperationsInput | Null Yes
win Boolean | BoolFieldUpdateOperationsInput No

PlayerSnapshotUpdateWithoutPlayerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
timestamp Float | NullableFloatFieldUpdateOperationsInput | Null Yes
currentGold Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalGold Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalGoldDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes
xp Int | NullableIntFieldUpdateOperationsInput | Null Yes
xpDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes
level Int | NullableIntFieldUpdateOperationsInput | Null Yes
cs Int | NullableIntFieldUpdateOperationsInput | Null Yes
csDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes
monstersKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
monstersKilledDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes
position PositionUpdateManyWithoutPlayerSnapshotInput No

PlayerSnapshotUncheckedUpdateWithoutPlayerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
timestamp Float | NullableFloatFieldUpdateOperationsInput | Null Yes
currentGold Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalGold Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalGoldDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes
xp Int | NullableIntFieldUpdateOperationsInput | Null Yes
xpDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes
level Int | NullableIntFieldUpdateOperationsInput | Null Yes
cs Int | NullableIntFieldUpdateOperationsInput | Null Yes
csDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes
monstersKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
monstersKilledDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes
position PositionUncheckedUpdateManyWithoutPlayerSnapshotInput No

PlayerSnapshotUncheckedUpdateManyWithoutSnapshotsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
timestamp Float | NullableFloatFieldUpdateOperationsInput | Null Yes
currentGold Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalGold Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalGoldDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes
xp Int | NullableIntFieldUpdateOperationsInput | Null Yes
xpDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes
level Int | NullableIntFieldUpdateOperationsInput | Null Yes
cs Int | NullableIntFieldUpdateOperationsInput | Null Yes
csDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes
monstersKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
monstersKilledDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes

PlayerWardEventUpdateWithoutPlayerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
wardType PlayerWardEventWardTypeType | NullableEnumPlayerWardEventWardTypeTypeFieldUpdateOperationsInput | Null Yes

PlayerWardEventUncheckedUpdateWithoutPlayerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
wardType PlayerWardEventWardTypeType | NullableEnumPlayerWardEventWardTypeTypeFieldUpdateOperationsInput | Null Yes

PlayerWardEventUncheckedUpdateManyWithoutWardEventsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
wardType PlayerWardEventWardTypeType | NullableEnumPlayerWardEventWardTypeTypeFieldUpdateOperationsInput | Null Yes

PlayerSkillLevelUpEventUpdateWithoutPlayerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
slot Int | NullableIntFieldUpdateOperationsInput | Null Yes

PlayerSkillLevelUpEventUncheckedUpdateWithoutPlayerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
slot Int | NullableIntFieldUpdateOperationsInput | Null Yes

PlayerSkillLevelUpEventUncheckedUpdateManyWithoutSkillLevelUpEventsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
slot Int | NullableIntFieldUpdateOperationsInput | Null Yes

PlayerEndOfGameStatCreateManyItemsInput

Name Type Nullable
id String No
playerId String | Null Yes
gameId String | Null Yes
perksId String | Null Yes
assists Int | Null Yes
baronKills Int | Null Yes
bountyLevel Int | Null Yes
championExperience Int | Null Yes
championLevel Int | Null Yes
championId Int | Null Yes
championName String No
championTransform Int | Null Yes
consumablesPurchased Int | Null Yes
damageDealtToBuildings Int | Null Yes
damageDealtToObjectives Int | Null Yes
damageDealtToTurrets Int | Null Yes
damageSelfMitigated Int | Null Yes
deaths Int | Null Yes
detectorWardsPlaced Int | Null Yes
doubleKills Int | Null Yes
dragonKills Int | Null Yes
firstBlood Boolean No
firstBloodAssist Boolean No
firstTowerKill Boolean No
firstTowerAssist Boolean No
gameEndedInEarlySurrender Boolean No
gameEndedInSurrender Boolean No
goldEarned Int | Null Yes
goldSpent Int | Null Yes
individualPosition String No
inhibitorKills Int | Null Yes
inhibitorTakedowns Int | Null Yes
inhibitorsLost Int | Null Yes
item0 Int | Null Yes
item1 Int | Null Yes
item2 Int | Null Yes
item3 Int | Null Yes
item4 Int | Null Yes
item5 Int | Null Yes
item6 Int | Null Yes
itemsPurchased Int | Null Yes
killingSprees Int | Null Yes
kills Int | Null Yes
lane String No
largestCriticalStrike Int | Null Yes
largestKillingSpree Int | Null Yes
largestMultiKill Int | Null Yes
longestTimeSpentLiving Int | Null Yes
magicDamageDealt Int | Null Yes
magicDamageDealtToChampions Int | Null Yes
magicDamageTaken Int | Null Yes
neutralMinionsKilled Int | Null Yes
nexusKills Int | Null Yes
nexusLost Int | Null Yes
nexusTakedowns Int | Null Yes
objectivesStolen Int | Null Yes
objectivesStolenAssists Int | Null Yes
participantId Int | Null Yes
pentaKills Int | Null Yes
physicalDamageDealt Int | Null Yes
physicalDamageDealtToChampions Int | Null Yes
physicalDamageTaken Int | Null Yes
quadraKills Int | Null Yes
riotIdName String No
riotIdTagline String No
role String No
sightWardsBoughtInGame Int | Null Yes
spell1Casts Int | Null Yes
spell2Casts Int | Null Yes
spell3Casts Int | Null Yes
spell4Casts Int | Null Yes
summoner1Casts Int | Null Yes
summoner1Id Int | Null Yes
summoner2Casts Int | Null Yes
summoner2Id Int | Null Yes
summonerLevel Int | Null Yes
summonerName String No
teamEarlySurrendered Boolean No
teamId Int | Null Yes
teamPosition String No
timeCCingOthers Int | Null Yes
timePlayed Int | Null Yes
totalDamageDealt Int | Null Yes
totalDamageDealtToChampions Int | Null Yes
totalDamageShieldedOnTeammates Int | Null Yes
totalDamageTaken Int | Null Yes
totalHeal Int | Null Yes
totalHealsOnTeammates Int | Null Yes
totalMinionsKilled Int | Null Yes
totalTimeCCDealt Int | Null Yes
totalTimeSpentDead Int | Null Yes
totalUnitsHealed Int | Null Yes
tripleKills Int | Null Yes
trueDamageDealt Int | Null Yes
trueDamageDealtToChampions Int | Null Yes
trueDamageTaken Int | Null Yes
turretsKilled Int | Null Yes
turretTakedowns Int | Null Yes
turretsLost Int | Null Yes
unrealKills Int | Null Yes
visionScore Int | Null Yes
visionWardsBoughtInGame Int | Null Yes
wardsKilled Int | Null Yes
wardsPlaced Int | Null Yes
win Boolean No

PlayerEndOfGameStatUpdateWithoutItemsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
player PlayerUpdateOneWithoutEndOfGameStatsInput No
game GameUpdateOneWithoutFrom_PlayerEndOfGameStat_gameInput No
perks PlayerRuneUpdateOneWithoutPlayerEndOfGameStatInput No
assists Int | NullableIntFieldUpdateOperationsInput | Null Yes
baronKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
bountyLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
championExperience Int | NullableIntFieldUpdateOperationsInput | Null Yes
championLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
championId Int | NullableIntFieldUpdateOperationsInput | Null Yes
championName String | StringFieldUpdateOperationsInput No
championTransform Int | NullableIntFieldUpdateOperationsInput | Null Yes
consumablesPurchased Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToBuildings Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToObjectives Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToTurrets Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageSelfMitigated Int | NullableIntFieldUpdateOperationsInput | Null Yes
deaths Int | NullableIntFieldUpdateOperationsInput | Null Yes
detectorWardsPlaced Int | NullableIntFieldUpdateOperationsInput | Null Yes
doubleKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
dragonKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
firstBlood Boolean | BoolFieldUpdateOperationsInput No
firstBloodAssist Boolean | BoolFieldUpdateOperationsInput No
firstTowerKill Boolean | BoolFieldUpdateOperationsInput No
firstTowerAssist Boolean | BoolFieldUpdateOperationsInput No
gameEndedInEarlySurrender Boolean | BoolFieldUpdateOperationsInput No
gameEndedInSurrender Boolean | BoolFieldUpdateOperationsInput No
goldEarned Int | NullableIntFieldUpdateOperationsInput | Null Yes
goldSpent Int | NullableIntFieldUpdateOperationsInput | Null Yes
individualPosition String | StringFieldUpdateOperationsInput No
inhibitorKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
inhibitorTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
inhibitorsLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
item0 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item1 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item2 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item3 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item4 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item5 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item6 Int | NullableIntFieldUpdateOperationsInput | Null Yes
itemsPurchased Int | NullableIntFieldUpdateOperationsInput | Null Yes
killingSprees Int | NullableIntFieldUpdateOperationsInput | Null Yes
kills Int | NullableIntFieldUpdateOperationsInput | Null Yes
lane String | StringFieldUpdateOperationsInput No
largestCriticalStrike Int | NullableIntFieldUpdateOperationsInput | Null Yes
largestKillingSpree Int | NullableIntFieldUpdateOperationsInput | Null Yes
largestMultiKill Int | NullableIntFieldUpdateOperationsInput | Null Yes
longestTimeSpentLiving Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
neutralMinionsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
objectivesStolen Int | NullableIntFieldUpdateOperationsInput | Null Yes
objectivesStolenAssists Int | NullableIntFieldUpdateOperationsInput | Null Yes
participantId Int | NullableIntFieldUpdateOperationsInput | Null Yes
pentaKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
quadraKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
riotIdName String | StringFieldUpdateOperationsInput No
riotIdTagline String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
sightWardsBoughtInGame Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell1Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell2Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell3Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell4Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner1Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner1Id Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner2Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner2Id Int | NullableIntFieldUpdateOperationsInput | Null Yes
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
summonerName String | StringFieldUpdateOperationsInput No
teamEarlySurrendered Boolean | BoolFieldUpdateOperationsInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
teamPosition String | StringFieldUpdateOperationsInput No
timeCCingOthers Int | NullableIntFieldUpdateOperationsInput | Null Yes
timePlayed Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageShieldedOnTeammates Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalHeal Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalHealsOnTeammates Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalMinionsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalTimeCCDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalTimeSpentDead Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalUnitsHealed Int | NullableIntFieldUpdateOperationsInput | Null Yes
tripleKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretsLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
unrealKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
visionScore Int | NullableIntFieldUpdateOperationsInput | Null Yes
visionWardsBoughtInGame Int | NullableIntFieldUpdateOperationsInput | Null Yes
wardsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
wardsPlaced Int | NullableIntFieldUpdateOperationsInput | Null Yes
win Boolean | BoolFieldUpdateOperationsInput No

PlayerEndOfGameStatUncheckedUpdateWithoutItemsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
playerId String | NullableStringFieldUpdateOperationsInput | Null Yes
gameId String | NullableStringFieldUpdateOperationsInput | Null Yes
perksId String | NullableStringFieldUpdateOperationsInput | Null Yes
assists Int | NullableIntFieldUpdateOperationsInput | Null Yes
baronKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
bountyLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
championExperience Int | NullableIntFieldUpdateOperationsInput | Null Yes
championLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
championId Int | NullableIntFieldUpdateOperationsInput | Null Yes
championName String | StringFieldUpdateOperationsInput No
championTransform Int | NullableIntFieldUpdateOperationsInput | Null Yes
consumablesPurchased Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToBuildings Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToObjectives Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToTurrets Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageSelfMitigated Int | NullableIntFieldUpdateOperationsInput | Null Yes
deaths Int | NullableIntFieldUpdateOperationsInput | Null Yes
detectorWardsPlaced Int | NullableIntFieldUpdateOperationsInput | Null Yes
doubleKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
dragonKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
firstBlood Boolean | BoolFieldUpdateOperationsInput No
firstBloodAssist Boolean | BoolFieldUpdateOperationsInput No
firstTowerKill Boolean | BoolFieldUpdateOperationsInput No
firstTowerAssist Boolean | BoolFieldUpdateOperationsInput No
gameEndedInEarlySurrender Boolean | BoolFieldUpdateOperationsInput No
gameEndedInSurrender Boolean | BoolFieldUpdateOperationsInput No
goldEarned Int | NullableIntFieldUpdateOperationsInput | Null Yes
goldSpent Int | NullableIntFieldUpdateOperationsInput | Null Yes
individualPosition String | StringFieldUpdateOperationsInput No
inhibitorKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
inhibitorTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
inhibitorsLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
item0 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item1 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item2 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item3 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item4 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item5 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item6 Int | NullableIntFieldUpdateOperationsInput | Null Yes
itemsPurchased Int | NullableIntFieldUpdateOperationsInput | Null Yes
killingSprees Int | NullableIntFieldUpdateOperationsInput | Null Yes
kills Int | NullableIntFieldUpdateOperationsInput | Null Yes
lane String | StringFieldUpdateOperationsInput No
largestCriticalStrike Int | NullableIntFieldUpdateOperationsInput | Null Yes
largestKillingSpree Int | NullableIntFieldUpdateOperationsInput | Null Yes
largestMultiKill Int | NullableIntFieldUpdateOperationsInput | Null Yes
longestTimeSpentLiving Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
neutralMinionsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
objectivesStolen Int | NullableIntFieldUpdateOperationsInput | Null Yes
objectivesStolenAssists Int | NullableIntFieldUpdateOperationsInput | Null Yes
participantId Int | NullableIntFieldUpdateOperationsInput | Null Yes
pentaKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
quadraKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
riotIdName String | StringFieldUpdateOperationsInput No
riotIdTagline String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
sightWardsBoughtInGame Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell1Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell2Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell3Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell4Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner1Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner1Id Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner2Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner2Id Int | NullableIntFieldUpdateOperationsInput | Null Yes
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
summonerName String | StringFieldUpdateOperationsInput No
teamEarlySurrendered Boolean | BoolFieldUpdateOperationsInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
teamPosition String | StringFieldUpdateOperationsInput No
timeCCingOthers Int | NullableIntFieldUpdateOperationsInput | Null Yes
timePlayed Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageShieldedOnTeammates Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalHeal Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalHealsOnTeammates Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalMinionsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalTimeCCDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalTimeSpentDead Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalUnitsHealed Int | NullableIntFieldUpdateOperationsInput | Null Yes
tripleKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretsLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
unrealKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
visionScore Int | NullableIntFieldUpdateOperationsInput | Null Yes
visionWardsBoughtInGame Int | NullableIntFieldUpdateOperationsInput | Null Yes
wardsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
wardsPlaced Int | NullableIntFieldUpdateOperationsInput | Null Yes
win Boolean | BoolFieldUpdateOperationsInput No

PlayerEndOfGameStatUncheckedUpdateManyWithoutPlayerEndOfGameStatInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
playerId String | NullableStringFieldUpdateOperationsInput | Null Yes
gameId String | NullableStringFieldUpdateOperationsInput | Null Yes
perksId String | NullableStringFieldUpdateOperationsInput | Null Yes
assists Int | NullableIntFieldUpdateOperationsInput | Null Yes
baronKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
bountyLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
championExperience Int | NullableIntFieldUpdateOperationsInput | Null Yes
championLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
championId Int | NullableIntFieldUpdateOperationsInput | Null Yes
championName String | StringFieldUpdateOperationsInput No
championTransform Int | NullableIntFieldUpdateOperationsInput | Null Yes
consumablesPurchased Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToBuildings Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToObjectives Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageDealtToTurrets Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageSelfMitigated Int | NullableIntFieldUpdateOperationsInput | Null Yes
deaths Int | NullableIntFieldUpdateOperationsInput | Null Yes
detectorWardsPlaced Int | NullableIntFieldUpdateOperationsInput | Null Yes
doubleKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
dragonKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
firstBlood Boolean | BoolFieldUpdateOperationsInput No
firstBloodAssist Boolean | BoolFieldUpdateOperationsInput No
firstTowerKill Boolean | BoolFieldUpdateOperationsInput No
firstTowerAssist Boolean | BoolFieldUpdateOperationsInput No
gameEndedInEarlySurrender Boolean | BoolFieldUpdateOperationsInput No
gameEndedInSurrender Boolean | BoolFieldUpdateOperationsInput No
goldEarned Int | NullableIntFieldUpdateOperationsInput | Null Yes
goldSpent Int | NullableIntFieldUpdateOperationsInput | Null Yes
individualPosition String | StringFieldUpdateOperationsInput No
inhibitorKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
inhibitorTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
inhibitorsLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
item0 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item1 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item2 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item3 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item4 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item5 Int | NullableIntFieldUpdateOperationsInput | Null Yes
item6 Int | NullableIntFieldUpdateOperationsInput | Null Yes
itemsPurchased Int | NullableIntFieldUpdateOperationsInput | Null Yes
killingSprees Int | NullableIntFieldUpdateOperationsInput | Null Yes
kills Int | NullableIntFieldUpdateOperationsInput | Null Yes
lane String | StringFieldUpdateOperationsInput No
largestCriticalStrike Int | NullableIntFieldUpdateOperationsInput | Null Yes
largestKillingSpree Int | NullableIntFieldUpdateOperationsInput | Null Yes
largestMultiKill Int | NullableIntFieldUpdateOperationsInput | Null Yes
longestTimeSpentLiving Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
magicDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
neutralMinionsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
nexusTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
objectivesStolen Int | NullableIntFieldUpdateOperationsInput | Null Yes
objectivesStolenAssists Int | NullableIntFieldUpdateOperationsInput | Null Yes
participantId Int | NullableIntFieldUpdateOperationsInput | Null Yes
pentaKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
physicalDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
quadraKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
riotIdName String | StringFieldUpdateOperationsInput No
riotIdTagline String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
sightWardsBoughtInGame Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell1Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell2Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell3Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell4Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner1Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner1Id Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner2Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
summoner2Id Int | NullableIntFieldUpdateOperationsInput | Null Yes
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
summonerName String | StringFieldUpdateOperationsInput No
teamEarlySurrendered Boolean | BoolFieldUpdateOperationsInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
teamPosition String | StringFieldUpdateOperationsInput No
timeCCingOthers Int | NullableIntFieldUpdateOperationsInput | Null Yes
timePlayed Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageShieldedOnTeammates Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalHeal Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalHealsOnTeammates Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalMinionsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalTimeCCDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalTimeSpentDead Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalUnitsHealed Int | NullableIntFieldUpdateOperationsInput | Null Yes
tripleKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageDealt Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageDealtToChampions Int | NullableIntFieldUpdateOperationsInput | Null Yes
trueDamageTaken Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretTakedowns Int | NullableIntFieldUpdateOperationsInput | Null Yes
turretsLost Int | NullableIntFieldUpdateOperationsInput | Null Yes
unrealKills Int | NullableIntFieldUpdateOperationsInput | Null Yes
visionScore Int | NullableIntFieldUpdateOperationsInput | Null Yes
visionWardsBoughtInGame Int | NullableIntFieldUpdateOperationsInput | Null Yes
wardsKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
wardsPlaced Int | NullableIntFieldUpdateOperationsInput | Null Yes
win Boolean | BoolFieldUpdateOperationsInput No

PlayerUpdateWithoutItemEventInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
puuid String | StringFieldUpdateOperationsInput No
accountId String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
summonerId String | StringFieldUpdateOperationsInput No
summonerName String | StringFieldUpdateOperationsInput No
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
profileIconId Int | NullableIntFieldUpdateOperationsInput | Null Yes
revisionDate String | StringFieldUpdateOperationsInput No
kills PlayerKillUpdateManyWithoutKillerInput No
deaths PlayerKillUpdateManyWithoutVictimInput No
teams TeamUpdateManyWithoutPlayersInput No
profile ProfileUpdateOneWithoutPlayerInput No
monsterKills TeamMonsterKillUpdateManyWithoutKillerInput No
buildingKills TeamBuildingKillUpdateManyWithoutKillerInput No
endOfGameStats PlayerEndOfGameStatUpdateManyWithoutPlayerInput No
snapshots PlayerSnapshotUpdateManyWithoutPlayerInput No
wardEvents PlayerWardEventUpdateManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventUpdateManyWithoutPlayerInput No

PlayerUncheckedUpdateWithoutItemEventInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
puuid String | StringFieldUpdateOperationsInput No
accountId String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
summonerId String | StringFieldUpdateOperationsInput No
summonerName String | StringFieldUpdateOperationsInput No
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
profileIconId Int | NullableIntFieldUpdateOperationsInput | Null Yes
revisionDate String | StringFieldUpdateOperationsInput No
kills PlayerKillUncheckedUpdateManyWithoutKillerInput No
deaths PlayerKillUncheckedUpdateManyWithoutVictimInput No
teams TeamUncheckedUpdateManyWithoutPlayersInput No
profileId String | NullableStringFieldUpdateOperationsInput | Null Yes
monsterKills TeamMonsterKillUncheckedUpdateManyWithoutKillerInput No
buildingKills TeamBuildingKillUncheckedUpdateManyWithoutKillerInput No
endOfGameStats PlayerEndOfGameStatUncheckedUpdateManyWithoutPlayerInput No
snapshots PlayerSnapshotUncheckedUpdateManyWithoutPlayerInput No
wardEvents PlayerWardEventUncheckedUpdateManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventUncheckedUpdateManyWithoutPlayerInput No

PlayerUncheckedUpdateManyWithoutPlayerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
puuid String | StringFieldUpdateOperationsInput No
accountId String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
summonerId String | StringFieldUpdateOperationsInput No
summonerName String | StringFieldUpdateOperationsInput No
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
profileIconId Int | NullableIntFieldUpdateOperationsInput | Null Yes
revisionDate String | StringFieldUpdateOperationsInput No
profileId String | NullableStringFieldUpdateOperationsInput | Null Yes

PlayerUpdateWithoutKillsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
puuid String | StringFieldUpdateOperationsInput No
accountId String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
summonerId String | StringFieldUpdateOperationsInput No
summonerName String | StringFieldUpdateOperationsInput No
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
profileIconId Int | NullableIntFieldUpdateOperationsInput | Null Yes
revisionDate String | StringFieldUpdateOperationsInput No
deaths PlayerKillUpdateManyWithoutVictimInput No
teams TeamUpdateManyWithoutPlayersInput No
profile ProfileUpdateOneWithoutPlayerInput No
monsterKills TeamMonsterKillUpdateManyWithoutKillerInput No
buildingKills TeamBuildingKillUpdateManyWithoutKillerInput No
itemEvent PlayerItemEventUpdateManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatUpdateManyWithoutPlayerInput No
snapshots PlayerSnapshotUpdateManyWithoutPlayerInput No
wardEvents PlayerWardEventUpdateManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventUpdateManyWithoutPlayerInput No

PlayerUncheckedUpdateWithoutKillsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
puuid String | StringFieldUpdateOperationsInput No
accountId String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
summonerId String | StringFieldUpdateOperationsInput No
summonerName String | StringFieldUpdateOperationsInput No
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
profileIconId Int | NullableIntFieldUpdateOperationsInput | Null Yes
revisionDate String | StringFieldUpdateOperationsInput No
deaths PlayerKillUncheckedUpdateManyWithoutVictimInput No
teams TeamUncheckedUpdateManyWithoutPlayersInput No
profileId String | NullableStringFieldUpdateOperationsInput | Null Yes
monsterKills TeamMonsterKillUncheckedUpdateManyWithoutKillerInput No
buildingKills TeamBuildingKillUncheckedUpdateManyWithoutKillerInput No
itemEvent PlayerItemEventUncheckedUpdateManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatUncheckedUpdateManyWithoutPlayerInput No
snapshots PlayerSnapshotUncheckedUpdateManyWithoutPlayerInput No
wardEvents PlayerWardEventUncheckedUpdateManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventUncheckedUpdateManyWithoutPlayerInput No

PlayerUncheckedUpdateManyWithoutKillerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
puuid String | StringFieldUpdateOperationsInput No
accountId String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
summonerId String | StringFieldUpdateOperationsInput No
summonerName String | StringFieldUpdateOperationsInput No
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
profileIconId Int | NullableIntFieldUpdateOperationsInput | Null Yes
revisionDate String | StringFieldUpdateOperationsInput No
profileId String | NullableStringFieldUpdateOperationsInput | Null Yes

PlayerUpdateWithoutDeathsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
puuid String | StringFieldUpdateOperationsInput No
accountId String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
summonerId String | StringFieldUpdateOperationsInput No
summonerName String | StringFieldUpdateOperationsInput No
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
profileIconId Int | NullableIntFieldUpdateOperationsInput | Null Yes
revisionDate String | StringFieldUpdateOperationsInput No
kills PlayerKillUpdateManyWithoutKillerInput No
teams TeamUpdateManyWithoutPlayersInput No
profile ProfileUpdateOneWithoutPlayerInput No
monsterKills TeamMonsterKillUpdateManyWithoutKillerInput No
buildingKills TeamBuildingKillUpdateManyWithoutKillerInput No
itemEvent PlayerItemEventUpdateManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatUpdateManyWithoutPlayerInput No
snapshots PlayerSnapshotUpdateManyWithoutPlayerInput No
wardEvents PlayerWardEventUpdateManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventUpdateManyWithoutPlayerInput No

PlayerUncheckedUpdateWithoutDeathsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
puuid String | StringFieldUpdateOperationsInput No
accountId String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
summonerId String | StringFieldUpdateOperationsInput No
summonerName String | StringFieldUpdateOperationsInput No
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
profileIconId Int | NullableIntFieldUpdateOperationsInput | Null Yes
revisionDate String | StringFieldUpdateOperationsInput No
kills PlayerKillUncheckedUpdateManyWithoutKillerInput No
teams TeamUncheckedUpdateManyWithoutPlayersInput No
profileId String | NullableStringFieldUpdateOperationsInput | Null Yes
monsterKills TeamMonsterKillUncheckedUpdateManyWithoutKillerInput No
buildingKills TeamBuildingKillUncheckedUpdateManyWithoutKillerInput No
itemEvent PlayerItemEventUncheckedUpdateManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatUncheckedUpdateManyWithoutPlayerInput No
snapshots PlayerSnapshotUncheckedUpdateManyWithoutPlayerInput No
wardEvents PlayerWardEventUncheckedUpdateManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventUncheckedUpdateManyWithoutPlayerInput No

PlayerUncheckedUpdateManyWithoutVictimInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
puuid String | StringFieldUpdateOperationsInput No
accountId String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
summonerId String | StringFieldUpdateOperationsInput No
summonerName String | StringFieldUpdateOperationsInput No
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
profileIconId Int | NullableIntFieldUpdateOperationsInput | Null Yes
revisionDate String | StringFieldUpdateOperationsInput No
profileId String | NullableStringFieldUpdateOperationsInput | Null Yes

RuneStyleCreateManyPlayerRunesInput

Name Type Nullable
id String No
description String No
style Int | Null Yes

RuneStyleUpdateWithoutPlayerRunesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
selection RuneSelectionUpdateManyWithoutRuneStyleInput No
description String | StringFieldUpdateOperationsInput No
style Int | NullableIntFieldUpdateOperationsInput | Null Yes

RuneStyleUncheckedUpdateWithoutPlayerRunesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
selection RuneSelectionUncheckedUpdateManyWithoutRuneStyleInput No
description String | StringFieldUpdateOperationsInput No
style Int | NullableIntFieldUpdateOperationsInput | Null Yes

RuneStyleUncheckedUpdateManyWithoutRuneStyleInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
style Int | NullableIntFieldUpdateOperationsInput | Null Yes

PlayerUpdateWithoutSkillLevelUpEventsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
puuid String | StringFieldUpdateOperationsInput No
accountId String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
summonerId String | StringFieldUpdateOperationsInput No
summonerName String | StringFieldUpdateOperationsInput No
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
profileIconId Int | NullableIntFieldUpdateOperationsInput | Null Yes
revisionDate String | StringFieldUpdateOperationsInput No
kills PlayerKillUpdateManyWithoutKillerInput No
deaths PlayerKillUpdateManyWithoutVictimInput No
teams TeamUpdateManyWithoutPlayersInput No
profile ProfileUpdateOneWithoutPlayerInput No
monsterKills TeamMonsterKillUpdateManyWithoutKillerInput No
buildingKills TeamBuildingKillUpdateManyWithoutKillerInput No
itemEvent PlayerItemEventUpdateManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatUpdateManyWithoutPlayerInput No
snapshots PlayerSnapshotUpdateManyWithoutPlayerInput No
wardEvents PlayerWardEventUpdateManyWithoutPlayerInput No

PlayerUncheckedUpdateWithoutSkillLevelUpEventsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
puuid String | StringFieldUpdateOperationsInput No
accountId String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
summonerId String | StringFieldUpdateOperationsInput No
summonerName String | StringFieldUpdateOperationsInput No
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
profileIconId Int | NullableIntFieldUpdateOperationsInput | Null Yes
revisionDate String | StringFieldUpdateOperationsInput No
kills PlayerKillUncheckedUpdateManyWithoutKillerInput No
deaths PlayerKillUncheckedUpdateManyWithoutVictimInput No
teams TeamUncheckedUpdateManyWithoutPlayersInput No
profileId String | NullableStringFieldUpdateOperationsInput | Null Yes
monsterKills TeamMonsterKillUncheckedUpdateManyWithoutKillerInput No
buildingKills TeamBuildingKillUncheckedUpdateManyWithoutKillerInput No
itemEvent PlayerItemEventUncheckedUpdateManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatUncheckedUpdateManyWithoutPlayerInput No
snapshots PlayerSnapshotUncheckedUpdateManyWithoutPlayerInput No
wardEvents PlayerWardEventUncheckedUpdateManyWithoutPlayerInput No

PositionUpdateWithoutPlayerSnapshotInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
event EventUpdateManyWithoutPositionInput No
x Int | NullableIntFieldUpdateOperationsInput | Null Yes
y Int | NullableIntFieldUpdateOperationsInput | Null Yes

PositionUncheckedUpdateWithoutPlayerSnapshotInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
event EventUncheckedUpdateManyWithoutPositionInput No
x Int | NullableIntFieldUpdateOperationsInput | Null Yes
y Int | NullableIntFieldUpdateOperationsInput | Null Yes

PlayerUpdateWithoutSnapshotsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
puuid String | StringFieldUpdateOperationsInput No
accountId String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
summonerId String | StringFieldUpdateOperationsInput No
summonerName String | StringFieldUpdateOperationsInput No
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
profileIconId Int | NullableIntFieldUpdateOperationsInput | Null Yes
revisionDate String | StringFieldUpdateOperationsInput No
kills PlayerKillUpdateManyWithoutKillerInput No
deaths PlayerKillUpdateManyWithoutVictimInput No
teams TeamUpdateManyWithoutPlayersInput No
profile ProfileUpdateOneWithoutPlayerInput No
monsterKills TeamMonsterKillUpdateManyWithoutKillerInput No
buildingKills TeamBuildingKillUpdateManyWithoutKillerInput No
itemEvent PlayerItemEventUpdateManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatUpdateManyWithoutPlayerInput No
wardEvents PlayerWardEventUpdateManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventUpdateManyWithoutPlayerInput No

PlayerUncheckedUpdateWithoutSnapshotsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
puuid String | StringFieldUpdateOperationsInput No
accountId String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
summonerId String | StringFieldUpdateOperationsInput No
summonerName String | StringFieldUpdateOperationsInput No
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
profileIconId Int | NullableIntFieldUpdateOperationsInput | Null Yes
revisionDate String | StringFieldUpdateOperationsInput No
kills PlayerKillUncheckedUpdateManyWithoutKillerInput No
deaths PlayerKillUncheckedUpdateManyWithoutVictimInput No
teams TeamUncheckedUpdateManyWithoutPlayersInput No
profileId String | NullableStringFieldUpdateOperationsInput | Null Yes
monsterKills TeamMonsterKillUncheckedUpdateManyWithoutKillerInput No
buildingKills TeamBuildingKillUncheckedUpdateManyWithoutKillerInput No
itemEvent PlayerItemEventUncheckedUpdateManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatUncheckedUpdateManyWithoutPlayerInput No
wardEvents PlayerWardEventUncheckedUpdateManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventUncheckedUpdateManyWithoutPlayerInput No

PlayerUpdateWithoutWardEventsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
puuid String | StringFieldUpdateOperationsInput No
accountId String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
summonerId String | StringFieldUpdateOperationsInput No
summonerName String | StringFieldUpdateOperationsInput No
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
profileIconId Int | NullableIntFieldUpdateOperationsInput | Null Yes
revisionDate String | StringFieldUpdateOperationsInput No
kills PlayerKillUpdateManyWithoutKillerInput No
deaths PlayerKillUpdateManyWithoutVictimInput No
teams TeamUpdateManyWithoutPlayersInput No
profile ProfileUpdateOneWithoutPlayerInput No
monsterKills TeamMonsterKillUpdateManyWithoutKillerInput No
buildingKills TeamBuildingKillUpdateManyWithoutKillerInput No
itemEvent PlayerItemEventUpdateManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatUpdateManyWithoutPlayerInput No
snapshots PlayerSnapshotUpdateManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventUpdateManyWithoutPlayerInput No

PlayerUncheckedUpdateWithoutWardEventsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
puuid String | StringFieldUpdateOperationsInput No
accountId String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
summonerId String | StringFieldUpdateOperationsInput No
summonerName String | StringFieldUpdateOperationsInput No
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
profileIconId Int | NullableIntFieldUpdateOperationsInput | Null Yes
revisionDate String | StringFieldUpdateOperationsInput No
kills PlayerKillUncheckedUpdateManyWithoutKillerInput No
deaths PlayerKillUncheckedUpdateManyWithoutVictimInput No
teams TeamUncheckedUpdateManyWithoutPlayersInput No
profileId String | NullableStringFieldUpdateOperationsInput | Null Yes
monsterKills TeamMonsterKillUncheckedUpdateManyWithoutKillerInput No
buildingKills TeamBuildingKillUncheckedUpdateManyWithoutKillerInput No
itemEvent PlayerItemEventUncheckedUpdateManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatUncheckedUpdateManyWithoutPlayerInput No
snapshots PlayerSnapshotUncheckedUpdateManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventUncheckedUpdateManyWithoutPlayerInput No

EventUpdateWithoutPositionInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
timestamp Int | NullableIntFieldUpdateOperationsInput | Null Yes

EventUncheckedUpdateWithoutPositionInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
timestamp Int | NullableIntFieldUpdateOperationsInput | Null Yes

EventUncheckedUpdateManyWithoutEventInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
timestamp Int | NullableIntFieldUpdateOperationsInput | Null Yes

PlayerSnapshotUpdateWithoutPositionInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
timestamp Float | NullableFloatFieldUpdateOperationsInput | Null Yes
currentGold Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalGold Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalGoldDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes
xp Int | NullableIntFieldUpdateOperationsInput | Null Yes
xpDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes
level Int | NullableIntFieldUpdateOperationsInput | Null Yes
cs Int | NullableIntFieldUpdateOperationsInput | Null Yes
csDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes
monstersKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
monstersKilledDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes
player PlayerUpdateManyWithoutSnapshotsInput No

PlayerSnapshotUncheckedUpdateWithoutPositionInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
timestamp Float | NullableFloatFieldUpdateOperationsInput | Null Yes
currentGold Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalGold Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalGoldDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes
xp Int | NullableIntFieldUpdateOperationsInput | Null Yes
xpDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes
level Int | NullableIntFieldUpdateOperationsInput | Null Yes
cs Int | NullableIntFieldUpdateOperationsInput | Null Yes
csDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes
monstersKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
monstersKilledDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes
player PlayerUncheckedUpdateManyWithoutSnapshotsInput No

PlayerSnapshotUncheckedUpdateManyWithoutPlayerSnapshotInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
timestamp Float | NullableFloatFieldUpdateOperationsInput | Null Yes
currentGold Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalGold Int | NullableIntFieldUpdateOperationsInput | Null Yes
totalGoldDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes
xp Int | NullableIntFieldUpdateOperationsInput | Null Yes
xpDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes
level Int | NullableIntFieldUpdateOperationsInput | Null Yes
cs Int | NullableIntFieldUpdateOperationsInput | Null Yes
csDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes
monstersKilled Int | NullableIntFieldUpdateOperationsInput | Null Yes
monstersKilledDiff Int | NullableIntFieldUpdateOperationsInput | Null Yes

ActivityCreateManyProfileInput

Name Type Nullable
id String No
month Int | Null Yes
year Int | Null Yes
day Int | Null Yes
gamesPlayed Int | Null Yes

ChampionWinrateCreateManyProfileInput

Name Type Nullable
id String No
champion String No
wins Int | Null Yes
games Int | Null Yes
spell1Casts Int | Null Yes
spell2Casts Int | Null Yes
spell3Casts Int | Null Yes
spell4Casts Int | Null Yes

DuoCreateManyProfileInput

Name Type Nullable
id String No
name String No
wins Int | Null Yes
losses Int | Null Yes
winrate String No

ActivityUpdateWithoutProfileInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
month Int | NullableIntFieldUpdateOperationsInput | Null Yes
year Int | NullableIntFieldUpdateOperationsInput | Null Yes
day Int | NullableIntFieldUpdateOperationsInput | Null Yes
gamesPlayed Int | NullableIntFieldUpdateOperationsInput | Null Yes

ActivityUncheckedUpdateWithoutProfileInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
month Int | NullableIntFieldUpdateOperationsInput | Null Yes
year Int | NullableIntFieldUpdateOperationsInput | Null Yes
day Int | NullableIntFieldUpdateOperationsInput | Null Yes
gamesPlayed Int | NullableIntFieldUpdateOperationsInput | Null Yes

ActivityUncheckedUpdateManyWithoutActivityInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
month Int | NullableIntFieldUpdateOperationsInput | Null Yes
year Int | NullableIntFieldUpdateOperationsInput | Null Yes
day Int | NullableIntFieldUpdateOperationsInput | Null Yes
gamesPlayed Int | NullableIntFieldUpdateOperationsInput | Null Yes

ChampionWinrateUpdateWithoutProfileInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
champion String | StringFieldUpdateOperationsInput No
wins Int | NullableIntFieldUpdateOperationsInput | Null Yes
games Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell1Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell2Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell3Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell4Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes

ChampionWinrateUncheckedUpdateWithoutProfileInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
champion String | StringFieldUpdateOperationsInput No
wins Int | NullableIntFieldUpdateOperationsInput | Null Yes
games Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell1Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell2Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell3Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell4Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes

ChampionWinrateUncheckedUpdateManyWithoutChampionWinrateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
champion String | StringFieldUpdateOperationsInput No
wins Int | NullableIntFieldUpdateOperationsInput | Null Yes
games Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell1Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell2Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell3Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes
spell4Casts Int | NullableIntFieldUpdateOperationsInput | Null Yes

DuoUpdateWithoutProfileInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
wins Int | NullableIntFieldUpdateOperationsInput | Null Yes
losses Int | NullableIntFieldUpdateOperationsInput | Null Yes
winrate String | StringFieldUpdateOperationsInput No

DuoUncheckedUpdateWithoutProfileInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
wins Int | NullableIntFieldUpdateOperationsInput | Null Yes
losses Int | NullableIntFieldUpdateOperationsInput | Null Yes
winrate String | StringFieldUpdateOperationsInput No

DuoUncheckedUpdateManyWithoutDuosInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
wins Int | NullableIntFieldUpdateOperationsInput | Null Yes
losses Int | NullableIntFieldUpdateOperationsInput | Null Yes
winrate String | StringFieldUpdateOperationsInput No

GameUpdateWithoutSourceInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
matchId String | StringFieldUpdateOperationsInput No
gameId String | StringFieldUpdateOperationsInput No
gameCreation String | StringFieldUpdateOperationsInput No
gameStartTimestamp String | StringFieldUpdateOperationsInput No
gameEndTimestamp String | StringFieldUpdateOperationsInput No
duration Int | NullableIntFieldUpdateOperationsInput | Null Yes
start String | StringFieldUpdateOperationsInput No
gameVersion String | StringFieldUpdateOperationsInput No
blueTeam TeamUpdateOneWithoutFrom_Game_blueTeamInput No
redTeam TeamUpdateOneWithoutFrom_Game_redTeamInput No
tournament String | StringFieldUpdateOperationsInput No
gameInSeries Int | NullableIntFieldUpdateOperationsInput | Null Yes
vod String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
from_PlayerEndOfGameStat_game PlayerEndOfGameStatUpdateManyWithoutGameInput No
from_Team_game TeamUpdateManyWithoutGameInput No

GameUncheckedUpdateWithoutSourceInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
matchId String | StringFieldUpdateOperationsInput No
gameId String | StringFieldUpdateOperationsInput No
gameCreation String | StringFieldUpdateOperationsInput No
gameStartTimestamp String | StringFieldUpdateOperationsInput No
gameEndTimestamp String | StringFieldUpdateOperationsInput No
duration Int | NullableIntFieldUpdateOperationsInput | Null Yes
start String | StringFieldUpdateOperationsInput No
gameVersion String | StringFieldUpdateOperationsInput No
blueTeamId String | NullableStringFieldUpdateOperationsInput | Null Yes
redTeamId String | NullableStringFieldUpdateOperationsInput | Null Yes
tournament String | StringFieldUpdateOperationsInput No
gameInSeries Int | NullableIntFieldUpdateOperationsInput | Null Yes
vod String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
from_PlayerEndOfGameStat_game PlayerEndOfGameStatUncheckedUpdateManyWithoutGameInput No
from_Team_game TeamUncheckedUpdateManyWithoutGameInput No

GameUncheckedUpdateManyWithoutGameInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
matchId String | StringFieldUpdateOperationsInput No
gameId String | StringFieldUpdateOperationsInput No
gameCreation String | StringFieldUpdateOperationsInput No
gameStartTimestamp String | StringFieldUpdateOperationsInput No
gameEndTimestamp String | StringFieldUpdateOperationsInput No
duration Int | NullableIntFieldUpdateOperationsInput | Null Yes
start String | StringFieldUpdateOperationsInput No
gameVersion String | StringFieldUpdateOperationsInput No
blueTeamId String | NullableStringFieldUpdateOperationsInput | Null Yes
redTeamId String | NullableStringFieldUpdateOperationsInput | Null Yes
tournament String | StringFieldUpdateOperationsInput No
gameInSeries Int | NullableIntFieldUpdateOperationsInput | Null Yes
vod String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No

PickBanCreateManyTeamInput

Name Type Nullable
id String No
championId Int | Null Yes
pickTurn Int | Null Yes

ObjectiveCreateManyTeamInput

Name Type Nullable
id String No
first Boolean No
kills Int | Null Yes
type String No

GameCreateManyBlueTeamInput

Name Type Nullable
id String No
matchId String No
gameId String No
gameCreation String No
gameStartTimestamp String No
gameEndTimestamp String No
duration Int | Null Yes
start String No
gameVersion String No
redTeamId String | Null Yes
tournament String No
gameInSeries Int | Null Yes
vod String No
platformId String No

GameCreateManyRedTeamInput

Name Type Nullable
id String No
matchId String No
gameId String No
gameCreation String No
gameStartTimestamp String No
gameEndTimestamp String No
duration Int | Null Yes
start String No
gameVersion String No
blueTeamId String | Null Yes
tournament String No
gameInSeries Int | Null Yes
vod String No
platformId String No

PickBanUpdateWithoutTeamInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
championId Int | NullableIntFieldUpdateOperationsInput | Null Yes
pickTurn Int | NullableIntFieldUpdateOperationsInput | Null Yes

PickBanUncheckedUpdateWithoutTeamInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
championId Int | NullableIntFieldUpdateOperationsInput | Null Yes
pickTurn Int | NullableIntFieldUpdateOperationsInput | Null Yes

PickBanUncheckedUpdateManyWithoutPickBanInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
championId Int | NullableIntFieldUpdateOperationsInput | Null Yes
pickTurn Int | NullableIntFieldUpdateOperationsInput | Null Yes

PlayerUpdateWithoutTeamsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
puuid String | StringFieldUpdateOperationsInput No
accountId String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
summonerId String | StringFieldUpdateOperationsInput No
summonerName String | StringFieldUpdateOperationsInput No
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
profileIconId Int | NullableIntFieldUpdateOperationsInput | Null Yes
revisionDate String | StringFieldUpdateOperationsInput No
kills PlayerKillUpdateManyWithoutKillerInput No
deaths PlayerKillUpdateManyWithoutVictimInput No
profile ProfileUpdateOneWithoutPlayerInput No
monsterKills TeamMonsterKillUpdateManyWithoutKillerInput No
buildingKills TeamBuildingKillUpdateManyWithoutKillerInput No
itemEvent PlayerItemEventUpdateManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatUpdateManyWithoutPlayerInput No
snapshots PlayerSnapshotUpdateManyWithoutPlayerInput No
wardEvents PlayerWardEventUpdateManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventUpdateManyWithoutPlayerInput No

PlayerUncheckedUpdateWithoutTeamsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
puuid String | StringFieldUpdateOperationsInput No
accountId String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
summonerId String | StringFieldUpdateOperationsInput No
summonerName String | StringFieldUpdateOperationsInput No
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
profileIconId Int | NullableIntFieldUpdateOperationsInput | Null Yes
revisionDate String | StringFieldUpdateOperationsInput No
kills PlayerKillUncheckedUpdateManyWithoutKillerInput No
deaths PlayerKillUncheckedUpdateManyWithoutVictimInput No
profileId String | NullableStringFieldUpdateOperationsInput | Null Yes
monsterKills TeamMonsterKillUncheckedUpdateManyWithoutKillerInput No
buildingKills TeamBuildingKillUncheckedUpdateManyWithoutKillerInput No
itemEvent PlayerItemEventUncheckedUpdateManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatUncheckedUpdateManyWithoutPlayerInput No
snapshots PlayerSnapshotUncheckedUpdateManyWithoutPlayerInput No
wardEvents PlayerWardEventUncheckedUpdateManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventUncheckedUpdateManyWithoutPlayerInput No

PlayerUncheckedUpdateManyWithoutPlayersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
puuid String | StringFieldUpdateOperationsInput No
accountId String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
summonerId String | StringFieldUpdateOperationsInput No
summonerName String | StringFieldUpdateOperationsInput No
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
profileIconId Int | NullableIntFieldUpdateOperationsInput | Null Yes
revisionDate String | StringFieldUpdateOperationsInput No
profileId String | NullableStringFieldUpdateOperationsInput | Null Yes

ObjectiveUpdateWithoutTeamInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
first Boolean | BoolFieldUpdateOperationsInput No
kills Int | NullableIntFieldUpdateOperationsInput | Null Yes
type String | StringFieldUpdateOperationsInput No

ObjectiveUncheckedUpdateWithoutTeamInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
first Boolean | BoolFieldUpdateOperationsInput No
kills Int | NullableIntFieldUpdateOperationsInput | Null Yes
type String | StringFieldUpdateOperationsInput No

ObjectiveUncheckedUpdateManyWithoutObjectivesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
first Boolean | BoolFieldUpdateOperationsInput No
kills Int | NullableIntFieldUpdateOperationsInput | Null Yes
type String | StringFieldUpdateOperationsInput No

GameUpdateWithoutBlueTeamInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
matchId String | StringFieldUpdateOperationsInput No
gameId String | StringFieldUpdateOperationsInput No
gameCreation String | StringFieldUpdateOperationsInput No
gameStartTimestamp String | StringFieldUpdateOperationsInput No
gameEndTimestamp String | StringFieldUpdateOperationsInput No
duration Int | NullableIntFieldUpdateOperationsInput | Null Yes
start String | StringFieldUpdateOperationsInput No
gameVersion String | StringFieldUpdateOperationsInput No
redTeam TeamUpdateOneWithoutFrom_Game_redTeamInput No
source SourceUpdateManyWithoutGameInput No
tournament String | StringFieldUpdateOperationsInput No
gameInSeries Int | NullableIntFieldUpdateOperationsInput | Null Yes
vod String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
from_PlayerEndOfGameStat_game PlayerEndOfGameStatUpdateManyWithoutGameInput No
from_Team_game TeamUpdateManyWithoutGameInput No

GameUncheckedUpdateWithoutBlueTeamInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
matchId String | StringFieldUpdateOperationsInput No
gameId String | StringFieldUpdateOperationsInput No
gameCreation String | StringFieldUpdateOperationsInput No
gameStartTimestamp String | StringFieldUpdateOperationsInput No
gameEndTimestamp String | StringFieldUpdateOperationsInput No
duration Int | NullableIntFieldUpdateOperationsInput | Null Yes
start String | StringFieldUpdateOperationsInput No
gameVersion String | StringFieldUpdateOperationsInput No
redTeamId String | NullableStringFieldUpdateOperationsInput | Null Yes
source SourceUncheckedUpdateManyWithoutGameInput No
tournament String | StringFieldUpdateOperationsInput No
gameInSeries Int | NullableIntFieldUpdateOperationsInput | Null Yes
vod String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
from_PlayerEndOfGameStat_game PlayerEndOfGameStatUncheckedUpdateManyWithoutGameInput No
from_Team_game TeamUncheckedUpdateManyWithoutGameInput No

GameUncheckedUpdateManyWithoutFrom_Game_blueTeamInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
matchId String | StringFieldUpdateOperationsInput No
gameId String | StringFieldUpdateOperationsInput No
gameCreation String | StringFieldUpdateOperationsInput No
gameStartTimestamp String | StringFieldUpdateOperationsInput No
gameEndTimestamp String | StringFieldUpdateOperationsInput No
duration Int | NullableIntFieldUpdateOperationsInput | Null Yes
start String | StringFieldUpdateOperationsInput No
gameVersion String | StringFieldUpdateOperationsInput No
redTeamId String | NullableStringFieldUpdateOperationsInput | Null Yes
tournament String | StringFieldUpdateOperationsInput No
gameInSeries Int | NullableIntFieldUpdateOperationsInput | Null Yes
vod String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No

GameUpdateWithoutRedTeamInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
matchId String | StringFieldUpdateOperationsInput No
gameId String | StringFieldUpdateOperationsInput No
gameCreation String | StringFieldUpdateOperationsInput No
gameStartTimestamp String | StringFieldUpdateOperationsInput No
gameEndTimestamp String | StringFieldUpdateOperationsInput No
duration Int | NullableIntFieldUpdateOperationsInput | Null Yes
start String | StringFieldUpdateOperationsInput No
gameVersion String | StringFieldUpdateOperationsInput No
blueTeam TeamUpdateOneWithoutFrom_Game_blueTeamInput No
source SourceUpdateManyWithoutGameInput No
tournament String | StringFieldUpdateOperationsInput No
gameInSeries Int | NullableIntFieldUpdateOperationsInput | Null Yes
vod String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
from_PlayerEndOfGameStat_game PlayerEndOfGameStatUpdateManyWithoutGameInput No
from_Team_game TeamUpdateManyWithoutGameInput No

GameUncheckedUpdateWithoutRedTeamInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
matchId String | StringFieldUpdateOperationsInput No
gameId String | StringFieldUpdateOperationsInput No
gameCreation String | StringFieldUpdateOperationsInput No
gameStartTimestamp String | StringFieldUpdateOperationsInput No
gameEndTimestamp String | StringFieldUpdateOperationsInput No
duration Int | NullableIntFieldUpdateOperationsInput | Null Yes
start String | StringFieldUpdateOperationsInput No
gameVersion String | StringFieldUpdateOperationsInput No
blueTeamId String | NullableStringFieldUpdateOperationsInput | Null Yes
source SourceUncheckedUpdateManyWithoutGameInput No
tournament String | StringFieldUpdateOperationsInput No
gameInSeries Int | NullableIntFieldUpdateOperationsInput | Null Yes
vod String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
from_PlayerEndOfGameStat_game PlayerEndOfGameStatUncheckedUpdateManyWithoutGameInput No
from_Team_game TeamUncheckedUpdateManyWithoutGameInput No

GameUncheckedUpdateManyWithoutFrom_Game_redTeamInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
matchId String | StringFieldUpdateOperationsInput No
gameId String | StringFieldUpdateOperationsInput No
gameCreation String | StringFieldUpdateOperationsInput No
gameStartTimestamp String | StringFieldUpdateOperationsInput No
gameEndTimestamp String | StringFieldUpdateOperationsInput No
duration Int | NullableIntFieldUpdateOperationsInput | Null Yes
start String | StringFieldUpdateOperationsInput No
gameVersion String | StringFieldUpdateOperationsInput No
blueTeamId String | NullableStringFieldUpdateOperationsInput | Null Yes
tournament String | StringFieldUpdateOperationsInput No
gameInSeries Int | NullableIntFieldUpdateOperationsInput | Null Yes
vod String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No

PlayerUpdateWithoutBuildingKillsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
puuid String | StringFieldUpdateOperationsInput No
accountId String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
summonerId String | StringFieldUpdateOperationsInput No
summonerName String | StringFieldUpdateOperationsInput No
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
profileIconId Int | NullableIntFieldUpdateOperationsInput | Null Yes
revisionDate String | StringFieldUpdateOperationsInput No
kills PlayerKillUpdateManyWithoutKillerInput No
deaths PlayerKillUpdateManyWithoutVictimInput No
teams TeamUpdateManyWithoutPlayersInput No
profile ProfileUpdateOneWithoutPlayerInput No
monsterKills TeamMonsterKillUpdateManyWithoutKillerInput No
itemEvent PlayerItemEventUpdateManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatUpdateManyWithoutPlayerInput No
snapshots PlayerSnapshotUpdateManyWithoutPlayerInput No
wardEvents PlayerWardEventUpdateManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventUpdateManyWithoutPlayerInput No

PlayerUncheckedUpdateWithoutBuildingKillsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
puuid String | StringFieldUpdateOperationsInput No
accountId String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
summonerId String | StringFieldUpdateOperationsInput No
summonerName String | StringFieldUpdateOperationsInput No
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
profileIconId Int | NullableIntFieldUpdateOperationsInput | Null Yes
revisionDate String | StringFieldUpdateOperationsInput No
kills PlayerKillUncheckedUpdateManyWithoutKillerInput No
deaths PlayerKillUncheckedUpdateManyWithoutVictimInput No
teams TeamUncheckedUpdateManyWithoutPlayersInput No
profileId String | NullableStringFieldUpdateOperationsInput | Null Yes
monsterKills TeamMonsterKillUncheckedUpdateManyWithoutKillerInput No
itemEvent PlayerItemEventUncheckedUpdateManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatUncheckedUpdateManyWithoutPlayerInput No
snapshots PlayerSnapshotUncheckedUpdateManyWithoutPlayerInput No
wardEvents PlayerWardEventUncheckedUpdateManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventUncheckedUpdateManyWithoutPlayerInput No

PlayerUpdateWithoutMonsterKillsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
puuid String | StringFieldUpdateOperationsInput No
accountId String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
summonerId String | StringFieldUpdateOperationsInput No
summonerName String | StringFieldUpdateOperationsInput No
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
profileIconId Int | NullableIntFieldUpdateOperationsInput | Null Yes
revisionDate String | StringFieldUpdateOperationsInput No
kills PlayerKillUpdateManyWithoutKillerInput No
deaths PlayerKillUpdateManyWithoutVictimInput No
teams TeamUpdateManyWithoutPlayersInput No
profile ProfileUpdateOneWithoutPlayerInput No
buildingKills TeamBuildingKillUpdateManyWithoutKillerInput No
itemEvent PlayerItemEventUpdateManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatUpdateManyWithoutPlayerInput No
snapshots PlayerSnapshotUpdateManyWithoutPlayerInput No
wardEvents PlayerWardEventUpdateManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventUpdateManyWithoutPlayerInput No

PlayerUncheckedUpdateWithoutMonsterKillsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
puuid String | StringFieldUpdateOperationsInput No
accountId String | StringFieldUpdateOperationsInput No
platformId String | StringFieldUpdateOperationsInput No
summonerId String | StringFieldUpdateOperationsInput No
summonerName String | StringFieldUpdateOperationsInput No
summonerLevel Int | NullableIntFieldUpdateOperationsInput | Null Yes
profileIconId Int | NullableIntFieldUpdateOperationsInput | Null Yes
revisionDate String | StringFieldUpdateOperationsInput No
kills PlayerKillUncheckedUpdateManyWithoutKillerInput No
deaths PlayerKillUncheckedUpdateManyWithoutVictimInput No
teams TeamUncheckedUpdateManyWithoutPlayersInput No
profileId String | NullableStringFieldUpdateOperationsInput | Null Yes
buildingKills TeamBuildingKillUncheckedUpdateManyWithoutKillerInput No
itemEvent PlayerItemEventUncheckedUpdateManyWithoutPlayerInput No
endOfGameStats PlayerEndOfGameStatUncheckedUpdateManyWithoutPlayerInput No
snapshots PlayerSnapshotUncheckedUpdateManyWithoutPlayerInput No
wardEvents PlayerWardEventUncheckedUpdateManyWithoutPlayerInput No
skillLevelUpEvents PlayerSkillLevelUpEventUncheckedUpdateManyWithoutPlayerInput No

RuneSelectionCreateManyRuneStyleInput

Name Type Nullable
id String No
perk Int | Null Yes
var1 Int | Null Yes
var2 Int | Null Yes
var3 Int | Null Yes

RuneSelectionUpdateWithoutRuneStyleInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
perk Int | NullableIntFieldUpdateOperationsInput | Null Yes
var1 Int | NullableIntFieldUpdateOperationsInput | Null Yes
var2 Int | NullableIntFieldUpdateOperationsInput | Null Yes
var3 Int | NullableIntFieldUpdateOperationsInput | Null Yes

RuneSelectionUncheckedUpdateWithoutRuneStyleInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
perk Int | NullableIntFieldUpdateOperationsInput | Null Yes
var1 Int | NullableIntFieldUpdateOperationsInput | Null Yes
var2 Int | NullableIntFieldUpdateOperationsInput | Null Yes
var3 Int | NullableIntFieldUpdateOperationsInput | Null Yes

RuneSelectionUncheckedUpdateManyWithoutSelectionInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
perk Int | NullableIntFieldUpdateOperationsInput | Null Yes
var1 Int | NullableIntFieldUpdateOperationsInput | Null Yes
var2 Int | NullableIntFieldUpdateOperationsInput | Null Yes
var3 Int | NullableIntFieldUpdateOperationsInput | Null Yes

Output Types

Activity

Name Type Nullable
id String Yes
profile Profile No
profileId String No
month Int No
year Int No
day Int No
gamesPlayed Int No

ChampionWinrate

Name Type Nullable
id String Yes
profile Profile No
profileId String No
champion String Yes
wins Int No
games Int No
spell1Casts Int No
spell2Casts Int No
spell3Casts Int No
spell4Casts Int No

Duo

Name Type Nullable
id String Yes
profile Profile No
profileId String No
name String Yes
wins Int No
losses Int No
winrate String Yes

Constant

Name Type Nullable
id String Yes
startTime String Yes
currentSeason String Yes
seeding Boolean Yes

Event

Name Type Nullable
id String Yes
timestamp Int No
position Position[] No
_count EventCountOutputType Yes

Game

Name Type Nullable
id String Yes
matchId String Yes
gameId String Yes
gameCreation String Yes
gameStartTimestamp String Yes
gameEndTimestamp String Yes
duration Int No
start String Yes
gameVersion String Yes
blueTeam Team No
blueTeamId String No
redTeam Team No
redTeamId String No
source Source[] No
tournament String Yes
gameInSeries Int No
vod String Yes
platformId String Yes
from_PlayerEndOfGameStat_game PlayerEndOfGameStat[] No
from_Team_game Team[] No
_count GameCountOutputType Yes

Objective

Name Type Nullable
id String Yes
team Team No
teamId String No
first Boolean Yes
kills Int No
type String Yes

PickBan

Name Type Nullable
id String Yes
team Team No
teamId String No
championId Int No
pickTurn Int No

Player

Name Type Nullable
id String Yes
puuid String Yes
accountId String Yes
platformId String Yes
summonerId String Yes
summonerName String Yes
summonerLevel Int No
profileIconId Int No
revisionDate String Yes
kills PlayerKill[] No
deaths PlayerKill[] No
teams Team[] No
profile Profile No
profileId String No
monsterKills TeamMonsterKill[] No
buildingKills TeamBuildingKill[] No
itemEvent PlayerItemEvent[] No
endOfGameStats PlayerEndOfGameStat[] No
snapshots PlayerSnapshot[] No
wardEvents PlayerWardEvent[] No
skillLevelUpEvents PlayerSkillLevelUpEvent[] No
_count PlayerCountOutputType Yes

PlayerEndOfGameStat

Name Type Nullable
id String Yes
player Player No
playerId String No
game Game No
gameId String No
perks PlayerRune No
perksId String No
items PlayerItem No
itemsId String No
assists Int No
baronKills Int No
bountyLevel Int No
championExperience Int No
championLevel Int No
championId Int No
championName String Yes
championTransform Int No
consumablesPurchased Int No
damageDealtToBuildings Int No
damageDealtToObjectives Int No
damageDealtToTurrets Int No
damageSelfMitigated Int No
deaths Int No
detectorWardsPlaced Int No
doubleKills Int No
dragonKills Int No
firstBlood Boolean Yes
firstBloodAssist Boolean Yes
firstTowerKill Boolean Yes
firstTowerAssist Boolean Yes
gameEndedInEarlySurrender Boolean Yes
gameEndedInSurrender Boolean Yes
goldEarned Int No
goldSpent Int No
individualPosition String Yes
inhibitorKills Int No
inhibitorTakedowns Int No
inhibitorsLost Int No
item0 Int No
item1 Int No
item2 Int No
item3 Int No
item4 Int No
item5 Int No
item6 Int No
itemsPurchased Int No
killingSprees Int No
kills Int No
lane String Yes
largestCriticalStrike Int No
largestKillingSpree Int No
largestMultiKill Int No
longestTimeSpentLiving Int No
magicDamageDealt Int No
magicDamageDealtToChampions Int No
magicDamageTaken Int No
neutralMinionsKilled Int No
nexusKills Int No
nexusLost Int No
nexusTakedowns Int No
objectivesStolen Int No
objectivesStolenAssists Int No
participantId Int No
pentaKills Int No
physicalDamageDealt Int No
physicalDamageDealtToChampions Int No
physicalDamageTaken Int No
quadraKills Int No
riotIdName String Yes
riotIdTagline String Yes
role String Yes
sightWardsBoughtInGame Int No
spell1Casts Int No
spell2Casts Int No
spell3Casts Int No
spell4Casts Int No
summoner1Casts Int No
summoner1Id Int No
summoner2Casts Int No
summoner2Id Int No
summonerLevel Int No
summonerName String Yes
teamEarlySurrendered Boolean Yes
teamId Int No
teamPosition String Yes
timeCCingOthers Int No
timePlayed Int No
totalDamageDealt Int No
totalDamageDealtToChampions Int No
totalDamageShieldedOnTeammates Int No
totalDamageTaken Int No
totalHeal Int No
totalHealsOnTeammates Int No
totalMinionsKilled Int No
totalTimeCCDealt Int No
totalTimeSpentDead Int No
totalUnitsHealed Int No
tripleKills Int No
trueDamageDealt Int No
trueDamageDealtToChampions Int No
trueDamageTaken Int No
turretsKilled Int No
turretTakedowns Int No
turretsLost Int No
unrealKills Int No
visionScore Int No
visionWardsBoughtInGame Int No
wardsKilled Int No
wardsPlaced Int No
win Boolean Yes

PlayerItem

Name Type Nullable
id String Yes
slot Int No
itemId Int No
name String Yes
playerEndOfGameStat PlayerEndOfGameStat[] No
_count PlayerItemCountOutputType Yes

PlayerItemEvent

Name Type Nullable
id String Yes
player Player[] No
type String Yes
itemId Int No
name String Yes
undoId Int No
_count PlayerItemEventCountOutputType Yes

PlayerKill

Name Type Nullable
id String Yes
killer Player[] No
victim Player[] No
_count PlayerKillCountOutputType Yes

PlayerRune

Name Type Nullable
id String Yes
playerEndOfGameStat PlayerEndOfGameStat No
runeStyle RuneStyle[] No
defense Int No
flex Int No
offense Int No
_count PlayerRuneCountOutputType Yes

PlayerSkillLevelUpEvent

Name Type Nullable
id String Yes
player Player[] No
type String Yes
slot Int No
_count PlayerSkillLevelUpEventCountOutputType Yes

PlayerSnapshot

Name Type Nullable
id String Yes
timestamp Float No
currentGold Int No
totalGold Int No
totalGoldDiff Int No
xp Int No
xpDiff Int No
level Int No
cs Int No
csDiff Int No
monstersKilled Int No
monstersKilledDiff Int No
position Position[] No
player Player[] No
_count PlayerSnapshotCountOutputType Yes

PlayerWardEvent

Name Type Nullable
id String Yes
player Player[] No
type String Yes
wardType PlayerWardEventWardTypeType No
_count PlayerWardEventCountOutputType Yes

Position

Name Type Nullable
id String Yes
event Event[] No
x Int No
y Int No
playerSnapshot PlayerSnapshot[] No
_count PositionCountOutputType Yes

Profile

Name Type Nullable
id String Yes
update Boolean Yes
player Player No
lastUpdate DateTime Yes
kills Int No
deaths Int No
assists Int No
kda String Yes
winRate String Yes
csPerMinute String Yes
damagePerMinute String Yes
killsPerMinute String Yes
goldPerMinute String Yes
averageGameTime String Yes
averageTimeSpentDead String Yes
totalGameTime String Yes
activity Activity[] No
championWinrate ChampionWinrate[] No
duos Duo[] No
_count ProfileCountOutputType Yes

SeedIdentifier

Name Type Nullable
id String Yes
identifier String Yes
type String Yes
timestamp DateTime Yes
priority Boolean Yes
retrieved Boolean Yes

Source

Name Type Nullable
id String Yes
game Game[] No
api String Yes
_count SourceCountOutputType Yes

Team

Name Type Nullable
id String Yes
pickBan PickBan[] No
game Game No
gameId String No
players Player[] No
objectives Objective[] No
teamId Int No
teamMatchId String Yes
win Boolean Yes
from_Game_blueTeam Game[] No
from_Game_redTeam Game[] No
_count TeamCountOutputType Yes

TeamBuildingKill

Name Type Nullable
id String Yes
killer Player[] No
type String Yes
lane String Yes
side String Yes
towerLocation String Yes
_count TeamBuildingKillCountOutputType Yes

TeamMonsterKill

Name Type Nullable
id String Yes
killer Player[] No
type String Yes
subType String Yes
_count TeamMonsterKillCountOutputType Yes

RuneSelection

Name Type Nullable
id String Yes
runeStyle RuneStyle No
runeStyleId String No
perk Int No
var1 Int No
var2 Int No
var3 Int No

RuneStyle

Name Type Nullable
id String Yes
playerRunes PlayerRune No
playerRunesId String No
selection RuneSelection[] No
description String Yes
style Int No
_count RuneStyleCountOutputType Yes


ActivityGroupByOutputType

Name Type Nullable
id String Yes
profileId String No
month Int No
year Int No
day Int No
gamesPlayed Int No
_count ActivityCountAggregateOutputType No
_avg ActivityAvgAggregateOutputType No
_sum ActivitySumAggregateOutputType No
_min ActivityMinAggregateOutputType No
_max ActivityMaxAggregateOutputType No


ChampionWinrateGroupByOutputType

Name Type Nullable
id String Yes
profileId String No
champion String Yes
wins Int No
games Int No
spell1Casts Int No
spell2Casts Int No
spell3Casts Int No
spell4Casts Int No
_count ChampionWinrateCountAggregateOutputType No
_avg ChampionWinrateAvgAggregateOutputType No
_sum ChampionWinrateSumAggregateOutputType No
_min ChampionWinrateMinAggregateOutputType No
_max ChampionWinrateMaxAggregateOutputType No


DuoGroupByOutputType

Name Type Nullable
id String Yes
profileId String No
name String Yes
wins Int No
losses Int No
winrate String Yes
_count DuoCountAggregateOutputType No
_avg DuoAvgAggregateOutputType No
_sum DuoSumAggregateOutputType No
_min DuoMinAggregateOutputType No
_max DuoMaxAggregateOutputType No

AggregateConstant

Name Type Nullable
_count ConstantCountAggregateOutputType No
_min ConstantMinAggregateOutputType No
_max ConstantMaxAggregateOutputType No

ConstantGroupByOutputType

Name Type Nullable
id String Yes
startTime String Yes
currentSeason String Yes
seeding Boolean Yes
_count ConstantCountAggregateOutputType No
_min ConstantMinAggregateOutputType No
_max ConstantMaxAggregateOutputType No


EventGroupByOutputType

Name Type Nullable
id String Yes
timestamp Int No
_count EventCountAggregateOutputType No
_avg EventAvgAggregateOutputType No
_sum EventSumAggregateOutputType No
_min EventMinAggregateOutputType No
_max EventMaxAggregateOutputType No


GameGroupByOutputType

Name Type Nullable
id String Yes
matchId String Yes
gameId String Yes
gameCreation String Yes
gameStartTimestamp String Yes
gameEndTimestamp String Yes
duration Int No
start String Yes
gameVersion String Yes
blueTeamId String No
redTeamId String No
tournament String Yes
gameInSeries Int No
vod String Yes
platformId String Yes
_count GameCountAggregateOutputType No
_avg GameAvgAggregateOutputType No
_sum GameSumAggregateOutputType No
_min GameMinAggregateOutputType No
_max GameMaxAggregateOutputType No


ObjectiveGroupByOutputType

Name Type Nullable
id String Yes
teamId String No
first Boolean Yes
kills Int No
type String Yes
_count ObjectiveCountAggregateOutputType No
_avg ObjectiveAvgAggregateOutputType No
_sum ObjectiveSumAggregateOutputType No
_min ObjectiveMinAggregateOutputType No
_max ObjectiveMaxAggregateOutputType No


PickBanGroupByOutputType

Name Type Nullable
id String Yes
teamId String No
championId Int No
pickTurn Int No
_count PickBanCountAggregateOutputType No
_avg PickBanAvgAggregateOutputType No
_sum PickBanSumAggregateOutputType No
_min PickBanMinAggregateOutputType No
_max PickBanMaxAggregateOutputType No


PlayerGroupByOutputType

Name Type Nullable
id String Yes
puuid String Yes
accountId String Yes
platformId String Yes
summonerId String Yes
summonerName String Yes
summonerLevel Int No
profileIconId Int No
revisionDate String Yes
profileId String No
_count PlayerCountAggregateOutputType No
_avg PlayerAvgAggregateOutputType No
_sum PlayerSumAggregateOutputType No
_min PlayerMinAggregateOutputType No
_max PlayerMaxAggregateOutputType No


PlayerEndOfGameStatGroupByOutputType

Name Type Nullable
id String Yes
playerId String No
gameId String No
perksId String No
itemsId String No
assists Int No
baronKills Int No
bountyLevel Int No
championExperience Int No
championLevel Int No
championId Int No
championName String Yes
championTransform Int No
consumablesPurchased Int No
damageDealtToBuildings Int No
damageDealtToObjectives Int No
damageDealtToTurrets Int No
damageSelfMitigated Int No
deaths Int No
detectorWardsPlaced Int No
doubleKills Int No
dragonKills Int No
firstBlood Boolean Yes
firstBloodAssist Boolean Yes
firstTowerKill Boolean Yes
firstTowerAssist Boolean Yes
gameEndedInEarlySurrender Boolean Yes
gameEndedInSurrender Boolean Yes
goldEarned Int No
goldSpent Int No
individualPosition String Yes
inhibitorKills Int No
inhibitorTakedowns Int No
inhibitorsLost Int No
item0 Int No
item1 Int No
item2 Int No
item3 Int No
item4 Int No
item5 Int No
item6 Int No
itemsPurchased Int No
killingSprees Int No
kills Int No
lane String Yes
largestCriticalStrike Int No
largestKillingSpree Int No
largestMultiKill Int No
longestTimeSpentLiving Int No
magicDamageDealt Int No
magicDamageDealtToChampions Int No
magicDamageTaken Int No
neutralMinionsKilled Int No
nexusKills Int No
nexusLost Int No
nexusTakedowns Int No
objectivesStolen Int No
objectivesStolenAssists Int No
participantId Int No
pentaKills Int No
physicalDamageDealt Int No
physicalDamageDealtToChampions Int No
physicalDamageTaken Int No
quadraKills Int No
riotIdName String Yes
riotIdTagline String Yes
role String Yes
sightWardsBoughtInGame Int No
spell1Casts Int No
spell2Casts Int No
spell3Casts Int No
spell4Casts Int No
summoner1Casts Int No
summoner1Id Int No
summoner2Casts Int No
summoner2Id Int No
summonerLevel Int No
summonerName String Yes
teamEarlySurrendered Boolean Yes
teamId Int No
teamPosition String Yes
timeCCingOthers Int No
timePlayed Int No
totalDamageDealt Int No
totalDamageDealtToChampions Int No
totalDamageShieldedOnTeammates Int No
totalDamageTaken Int No
totalHeal Int No
totalHealsOnTeammates Int No
totalMinionsKilled Int No
totalTimeCCDealt Int No
totalTimeSpentDead Int No
totalUnitsHealed Int No
tripleKills Int No
trueDamageDealt Int No
trueDamageDealtToChampions Int No
trueDamageTaken Int No
turretsKilled Int No
turretTakedowns Int No
turretsLost Int No
unrealKills Int No
visionScore Int No
visionWardsBoughtInGame Int No
wardsKilled Int No
wardsPlaced Int No
win Boolean Yes
_count PlayerEndOfGameStatCountAggregateOutputType No
_avg PlayerEndOfGameStatAvgAggregateOutputType No
_sum PlayerEndOfGameStatSumAggregateOutputType No
_min PlayerEndOfGameStatMinAggregateOutputType No
_max PlayerEndOfGameStatMaxAggregateOutputType No


PlayerItemGroupByOutputType

Name Type Nullable
id String Yes
slot Int No
itemId Int No
name String Yes
_count PlayerItemCountAggregateOutputType No
_avg PlayerItemAvgAggregateOutputType No
_sum PlayerItemSumAggregateOutputType No
_min PlayerItemMinAggregateOutputType No
_max PlayerItemMaxAggregateOutputType No


PlayerItemEventGroupByOutputType

Name Type Nullable
id String Yes
type String Yes
itemId Int No
name String Yes
undoId Int No
_count PlayerItemEventCountAggregateOutputType No
_avg PlayerItemEventAvgAggregateOutputType No
_sum PlayerItemEventSumAggregateOutputType No
_min PlayerItemEventMinAggregateOutputType No
_max PlayerItemEventMaxAggregateOutputType No

AggregatePlayerKill

Name Type Nullable
_count PlayerKillCountAggregateOutputType No
_min PlayerKillMinAggregateOutputType No
_max PlayerKillMaxAggregateOutputType No

PlayerKillGroupByOutputType

Name Type Nullable
id String Yes
_count PlayerKillCountAggregateOutputType No
_min PlayerKillMinAggregateOutputType No
_max PlayerKillMaxAggregateOutputType No


PlayerRuneGroupByOutputType

Name Type Nullable
id String Yes
defense Int No
flex Int No
offense Int No
_count PlayerRuneCountAggregateOutputType No
_avg PlayerRuneAvgAggregateOutputType No
_sum PlayerRuneSumAggregateOutputType No
_min PlayerRuneMinAggregateOutputType No
_max PlayerRuneMaxAggregateOutputType No




PlayerSnapshotGroupByOutputType

Name Type Nullable
id String Yes
timestamp Float No
currentGold Int No
totalGold Int No
totalGoldDiff Int No
xp Int No
xpDiff Int No
level Int No
cs Int No
csDiff Int No
monstersKilled Int No
monstersKilledDiff Int No
_count PlayerSnapshotCountAggregateOutputType No
_avg PlayerSnapshotAvgAggregateOutputType No
_sum PlayerSnapshotSumAggregateOutputType No
_min PlayerSnapshotMinAggregateOutputType No
_max PlayerSnapshotMaxAggregateOutputType No


PlayerWardEventGroupByOutputType

Name Type Nullable
id String Yes
type String Yes
wardType PlayerWardEventWardTypeType No
_count PlayerWardEventCountAggregateOutputType No
_min PlayerWardEventMinAggregateOutputType No
_max PlayerWardEventMaxAggregateOutputType No


PositionGroupByOutputType

Name Type Nullable
id String Yes
x Int No
y Int No
_count PositionCountAggregateOutputType No
_avg PositionAvgAggregateOutputType No
_sum PositionSumAggregateOutputType No
_min PositionMinAggregateOutputType No
_max PositionMaxAggregateOutputType No


ProfileGroupByOutputType

Name Type Nullable
id String Yes
update Boolean Yes
lastUpdate DateTime Yes
kills Int No
deaths Int No
assists Int No
kda String Yes
winRate String Yes
csPerMinute String Yes
damagePerMinute String Yes
killsPerMinute String Yes
goldPerMinute String Yes
averageGameTime String Yes
averageTimeSpentDead String Yes
totalGameTime String Yes
_count ProfileCountAggregateOutputType No
_avg ProfileAvgAggregateOutputType No
_sum ProfileSumAggregateOutputType No
_min ProfileMinAggregateOutputType No
_max ProfileMaxAggregateOutputType No


SeedIdentifierGroupByOutputType

Name Type Nullable
id String Yes
identifier String Yes
type String Yes
timestamp DateTime Yes
priority Boolean Yes
retrieved Boolean Yes
_count SeedIdentifierCountAggregateOutputType No
_min SeedIdentifierMinAggregateOutputType No
_max SeedIdentifierMaxAggregateOutputType No

AggregateSource

Name Type Nullable
_count SourceCountAggregateOutputType No
_min SourceMinAggregateOutputType No
_max SourceMaxAggregateOutputType No

SourceGroupByOutputType

Name Type Nullable
id String Yes
api String Yes
_count SourceCountAggregateOutputType No
_min SourceMinAggregateOutputType No
_max SourceMaxAggregateOutputType No


TeamGroupByOutputType

Name Type Nullable
id String Yes
gameId String No
teamId Int No
teamMatchId String Yes
win Boolean Yes
_count TeamCountAggregateOutputType No
_avg TeamAvgAggregateOutputType No
_sum TeamSumAggregateOutputType No
_min TeamMinAggregateOutputType No
_max TeamMaxAggregateOutputType No


TeamBuildingKillGroupByOutputType

Name Type Nullable
id String Yes
type String Yes
lane String Yes
side String Yes
towerLocation String Yes
_count TeamBuildingKillCountAggregateOutputType No
_min TeamBuildingKillMinAggregateOutputType No
_max TeamBuildingKillMaxAggregateOutputType No


TeamMonsterKillGroupByOutputType

Name Type Nullable
id String Yes
type String Yes
subType String Yes
_count TeamMonsterKillCountAggregateOutputType No
_min TeamMonsterKillMinAggregateOutputType No
_max TeamMonsterKillMaxAggregateOutputType No


RuneSelectionGroupByOutputType

Name Type Nullable
id String Yes
runeStyleId String No
perk Int No
var1 Int No
var2 Int No
var3 Int No
_count RuneSelectionCountAggregateOutputType No
_avg RuneSelectionAvgAggregateOutputType No
_sum RuneSelectionSumAggregateOutputType No
_min RuneSelectionMinAggregateOutputType No
_max RuneSelectionMaxAggregateOutputType No


RuneStyleGroupByOutputType

Name Type Nullable
id String Yes
playerRunesId String No
description String Yes
style Int No
_count RuneStyleCountAggregateOutputType No
_avg RuneStyleAvgAggregateOutputType No
_sum RuneStyleSumAggregateOutputType No
_min RuneStyleMinAggregateOutputType No
_max RuneStyleMaxAggregateOutputType No

AffectedRowsOutput

Name Type Nullable
count Int Yes

ActivityCountAggregateOutputType

Name Type Nullable
id Int Yes
profileId Int Yes
month Int Yes
year Int Yes
day Int Yes
gamesPlayed Int Yes
_all Int Yes

ActivityAvgAggregateOutputType

Name Type Nullable
month Float No
year Float No
day Float No
gamesPlayed Float No

ActivitySumAggregateOutputType

Name Type Nullable
month Int No
year Int No
day Int No
gamesPlayed Int No

ActivityMinAggregateOutputType

Name Type Nullable
id String No
profileId String No
month Int No
year Int No
day Int No
gamesPlayed Int No

ActivityMaxAggregateOutputType

Name Type Nullable
id String No
profileId String No
month Int No
year Int No
day Int No
gamesPlayed Int No

ChampionWinrateCountAggregateOutputType

Name Type Nullable
id Int Yes
profileId Int Yes
champion Int Yes
wins Int Yes
games Int Yes
spell1Casts Int Yes
spell2Casts Int Yes
spell3Casts Int Yes
spell4Casts Int Yes
_all Int Yes

ChampionWinrateAvgAggregateOutputType

Name Type Nullable
wins Float No
games Float No
spell1Casts Float No
spell2Casts Float No
spell3Casts Float No
spell4Casts Float No

ChampionWinrateSumAggregateOutputType

Name Type Nullable
wins Int No
games Int No
spell1Casts Int No
spell2Casts Int No
spell3Casts Int No
spell4Casts Int No

ChampionWinrateMinAggregateOutputType

Name Type Nullable
id String No
profileId String No
champion String No
wins Int No
games Int No
spell1Casts Int No
spell2Casts Int No
spell3Casts Int No
spell4Casts Int No

ChampionWinrateMaxAggregateOutputType

Name Type Nullable
id String No
profileId String No
champion String No
wins Int No
games Int No
spell1Casts Int No
spell2Casts Int No
spell3Casts Int No
spell4Casts Int No

DuoCountAggregateOutputType

Name Type Nullable
id Int Yes
profileId Int Yes
name Int Yes
wins Int Yes
losses Int Yes
winrate Int Yes
_all Int Yes

DuoAvgAggregateOutputType

Name Type Nullable
wins Float No
losses Float No

DuoSumAggregateOutputType

Name Type Nullable
wins Int No
losses Int No

DuoMinAggregateOutputType

Name Type Nullable
id String No
profileId String No
name String No
wins Int No
losses Int No
winrate String No

DuoMaxAggregateOutputType

Name Type Nullable
id String No
profileId String No
name String No
wins Int No
losses Int No
winrate String No

ConstantCountAggregateOutputType

Name Type Nullable
id Int Yes
startTime Int Yes
currentSeason Int Yes
seeding Int Yes
_all Int Yes

ConstantMinAggregateOutputType

Name Type Nullable
id String No
startTime String No
currentSeason String No
seeding Boolean No

ConstantMaxAggregateOutputType

Name Type Nullable
id String No
startTime String No
currentSeason String No
seeding Boolean No

EventCountOutputType

Name Type Nullable
position Int Yes

EventCountAggregateOutputType

Name Type Nullable
id Int Yes
timestamp Int Yes
_all Int Yes

EventAvgAggregateOutputType

Name Type Nullable
timestamp Float No

EventSumAggregateOutputType

Name Type Nullable
timestamp Int No

EventMinAggregateOutputType

Name Type Nullable
id String No
timestamp Int No

EventMaxAggregateOutputType

Name Type Nullable
id String No
timestamp Int No

GameCountOutputType

Name Type Nullable
source Int Yes
from_PlayerEndOfGameStat_game Int Yes
from_Team_game Int Yes

GameCountAggregateOutputType

Name Type Nullable
id Int Yes
matchId Int Yes
gameId Int Yes
gameCreation Int Yes
gameStartTimestamp Int Yes
gameEndTimestamp Int Yes
duration Int Yes
start Int Yes
gameVersion Int Yes
blueTeamId Int Yes
redTeamId Int Yes
tournament Int Yes
gameInSeries Int Yes
vod Int Yes
platformId Int Yes
_all Int Yes

GameAvgAggregateOutputType

Name Type Nullable
duration Float No
gameInSeries Float No

GameSumAggregateOutputType

Name Type Nullable
duration Int No
gameInSeries Int No

GameMinAggregateOutputType

Name Type Nullable
id String No
matchId String No
gameId String No
gameCreation String No
gameStartTimestamp String No
gameEndTimestamp String No
duration Int No
start String No
gameVersion String No
blueTeamId String No
redTeamId String No
tournament String No
gameInSeries Int No
vod String No
platformId String No

GameMaxAggregateOutputType

Name Type Nullable
id String No
matchId String No
gameId String No
gameCreation String No
gameStartTimestamp String No
gameEndTimestamp String No
duration Int No
start String No
gameVersion String No
blueTeamId String No
redTeamId String No
tournament String No
gameInSeries Int No
vod String No
platformId String No

ObjectiveCountAggregateOutputType

Name Type Nullable
id Int Yes
teamId Int Yes
first Int Yes
kills Int Yes
type Int Yes
_all Int Yes

ObjectiveAvgAggregateOutputType

Name Type Nullable
kills Float No

ObjectiveSumAggregateOutputType

Name Type Nullable
kills Int No

ObjectiveMinAggregateOutputType

Name Type Nullable
id String No
teamId String No
first Boolean No
kills Int No
type String No

ObjectiveMaxAggregateOutputType

Name Type Nullable
id String No
teamId String No
first Boolean No
kills Int No
type String No

PickBanCountAggregateOutputType

Name Type Nullable
id Int Yes
teamId Int Yes
championId Int Yes
pickTurn Int Yes
_all Int Yes

PickBanAvgAggregateOutputType

Name Type Nullable
championId Float No
pickTurn Float No

PickBanSumAggregateOutputType

Name Type Nullable
championId Int No
pickTurn Int No

PickBanMinAggregateOutputType

Name Type Nullable
id String No
teamId String No
championId Int No
pickTurn Int No

PickBanMaxAggregateOutputType

Name Type Nullable
id String No
teamId String No
championId Int No
pickTurn Int No

PlayerCountOutputType

Name Type Nullable
kills Int Yes
deaths Int Yes
teams Int Yes
monsterKills Int Yes
buildingKills Int Yes
itemEvent Int Yes
endOfGameStats Int Yes
snapshots Int Yes
wardEvents Int Yes
skillLevelUpEvents Int Yes

PlayerCountAggregateOutputType

Name Type Nullable
id Int Yes
puuid Int Yes
accountId Int Yes
platformId Int Yes
summonerId Int Yes
summonerName Int Yes
summonerLevel Int Yes
profileIconId Int Yes
revisionDate Int Yes
profileId Int Yes
_all Int Yes

PlayerAvgAggregateOutputType

Name Type Nullable
summonerLevel Float No
profileIconId Float No

PlayerSumAggregateOutputType

Name Type Nullable
summonerLevel Int No
profileIconId Int No

PlayerMinAggregateOutputType

Name Type Nullable
id String No
puuid String No
accountId String No
platformId String No
summonerId String No
summonerName String No
summonerLevel Int No
profileIconId Int No
revisionDate String No
profileId String No

PlayerMaxAggregateOutputType

Name Type Nullable
id String No
puuid String No
accountId String No
platformId String No
summonerId String No
summonerName String No
summonerLevel Int No
profileIconId Int No
revisionDate String No
profileId String No

PlayerEndOfGameStatCountAggregateOutputType

Name Type Nullable
id Int Yes
playerId Int Yes
gameId Int Yes
perksId Int Yes
itemsId Int Yes
assists Int Yes
baronKills Int Yes
bountyLevel Int Yes
championExperience Int Yes
championLevel Int Yes
championId Int Yes
championName Int Yes
championTransform Int Yes
consumablesPurchased Int Yes
damageDealtToBuildings Int Yes
damageDealtToObjectives Int Yes
damageDealtToTurrets Int Yes
damageSelfMitigated Int Yes
deaths Int Yes
detectorWardsPlaced Int Yes
doubleKills Int Yes
dragonKills Int Yes
firstBlood Int Yes
firstBloodAssist Int Yes
firstTowerKill Int Yes
firstTowerAssist Int Yes
gameEndedInEarlySurrender Int Yes
gameEndedInSurrender Int Yes
goldEarned Int Yes
goldSpent Int Yes
individualPosition Int Yes
inhibitorKills Int Yes
inhibitorTakedowns Int Yes
inhibitorsLost Int Yes
item0 Int Yes
item1 Int Yes
item2 Int Yes
item3 Int Yes
item4 Int Yes
item5 Int Yes
item6 Int Yes
itemsPurchased Int Yes
killingSprees Int Yes
kills Int Yes
lane Int Yes
largestCriticalStrike Int Yes
largestKillingSpree Int Yes
largestMultiKill Int Yes
longestTimeSpentLiving Int Yes
magicDamageDealt Int Yes
magicDamageDealtToChampions Int Yes
magicDamageTaken Int Yes
neutralMinionsKilled Int Yes
nexusKills Int Yes
nexusLost Int Yes
nexusTakedowns Int Yes
objectivesStolen Int Yes
objectivesStolenAssists Int Yes
participantId Int Yes
pentaKills Int Yes
physicalDamageDealt Int Yes
physicalDamageDealtToChampions Int Yes
physicalDamageTaken Int Yes
quadraKills Int Yes
riotIdName Int Yes
riotIdTagline Int Yes
role Int Yes
sightWardsBoughtInGame Int Yes
spell1Casts Int Yes
spell2Casts Int Yes
spell3Casts Int Yes
spell4Casts Int Yes
summoner1Casts Int Yes
summoner1Id Int Yes
summoner2Casts Int Yes
summoner2Id Int Yes
summonerLevel Int Yes
summonerName Int Yes
teamEarlySurrendered Int Yes
teamId Int Yes
teamPosition Int Yes
timeCCingOthers Int Yes
timePlayed Int Yes
totalDamageDealt Int Yes
totalDamageDealtToChampions Int Yes
totalDamageShieldedOnTeammates Int Yes
totalDamageTaken Int Yes
totalHeal Int Yes
totalHealsOnTeammates Int Yes
totalMinionsKilled Int Yes
totalTimeCCDealt Int Yes
totalTimeSpentDead Int Yes
totalUnitsHealed Int Yes
tripleKills Int Yes
trueDamageDealt Int Yes
trueDamageDealtToChampions Int Yes
trueDamageTaken Int Yes
turretsKilled Int Yes
turretTakedowns Int Yes
turretsLost Int Yes
unrealKills Int Yes
visionScore Int Yes
visionWardsBoughtInGame Int Yes
wardsKilled Int Yes
wardsPlaced Int Yes
win Int Yes
_all Int Yes

PlayerEndOfGameStatAvgAggregateOutputType

Name Type Nullable
assists Float No
baronKills Float No
bountyLevel Float No
championExperience Float No
championLevel Float No
championId Float No
championTransform Float No
consumablesPurchased Float No
damageDealtToBuildings Float No
damageDealtToObjectives Float No
damageDealtToTurrets Float No
damageSelfMitigated Float No
deaths Float No
detectorWardsPlaced Float No
doubleKills Float No
dragonKills Float No
goldEarned Float No
goldSpent Float No
inhibitorKills Float No
inhibitorTakedowns Float No
inhibitorsLost Float No
item0 Float No
item1 Float No
item2 Float No
item3 Float No
item4 Float No
item5 Float No
item6 Float No
itemsPurchased Float No
killingSprees Float No
kills Float No
largestCriticalStrike Float No
largestKillingSpree Float No
largestMultiKill Float No
longestTimeSpentLiving Float No
magicDamageDealt Float No
magicDamageDealtToChampions Float No
magicDamageTaken Float No
neutralMinionsKilled Float No
nexusKills Float No
nexusLost Float No
nexusTakedowns Float No
objectivesStolen Float No
objectivesStolenAssists Float No
participantId Float No
pentaKills Float No
physicalDamageDealt Float No
physicalDamageDealtToChampions Float No
physicalDamageTaken Float No
quadraKills Float No
sightWardsBoughtInGame Float No
spell1Casts Float No
spell2Casts Float No
spell3Casts Float No
spell4Casts Float No
summoner1Casts Float No
summoner1Id Float No
summoner2Casts Float No
summoner2Id Float No
summonerLevel Float No
teamId Float No
timeCCingOthers Float No
timePlayed Float No
totalDamageDealt Float No
totalDamageDealtToChampions Float No
totalDamageShieldedOnTeammates Float No
totalDamageTaken Float No
totalHeal Float No
totalHealsOnTeammates Float No
totalMinionsKilled Float No
totalTimeCCDealt Float No
totalTimeSpentDead Float No
totalUnitsHealed Float No
tripleKills Float No
trueDamageDealt Float No
trueDamageDealtToChampions Float No
trueDamageTaken Float No
turretsKilled Float No
turretTakedowns Float No
turretsLost Float No
unrealKills Float No
visionScore Float No
visionWardsBoughtInGame Float No
wardsKilled Float No
wardsPlaced Float No

PlayerEndOfGameStatSumAggregateOutputType

Name Type Nullable
assists Int No
baronKills Int No
bountyLevel Int No
championExperience Int No
championLevel Int No
championId Int No
championTransform Int No
consumablesPurchased Int No
damageDealtToBuildings Int No
damageDealtToObjectives Int No
damageDealtToTurrets Int No
damageSelfMitigated Int No
deaths Int No
detectorWardsPlaced Int No
doubleKills Int No
dragonKills Int No
goldEarned Int No
goldSpent Int No
inhibitorKills Int No
inhibitorTakedowns Int No
inhibitorsLost Int No
item0 Int No
item1 Int No
item2 Int No
item3 Int No
item4 Int No
item5 Int No
item6 Int No
itemsPurchased Int No
killingSprees Int No
kills Int No
largestCriticalStrike Int No
largestKillingSpree Int No
largestMultiKill Int No
longestTimeSpentLiving Int No
magicDamageDealt Int No
magicDamageDealtToChampions Int No
magicDamageTaken Int No
neutralMinionsKilled Int No
nexusKills Int No
nexusLost Int No
nexusTakedowns Int No
objectivesStolen Int No
objectivesStolenAssists Int No
participantId Int No
pentaKills Int No
physicalDamageDealt Int No
physicalDamageDealtToChampions Int No
physicalDamageTaken Int No
quadraKills Int No
sightWardsBoughtInGame Int No
spell1Casts Int No
spell2Casts Int No
spell3Casts Int No
spell4Casts Int No
summoner1Casts Int No
summoner1Id Int No
summoner2Casts Int No
summoner2Id Int No
summonerLevel Int No
teamId Int No
timeCCingOthers Int No
timePlayed Int No
totalDamageDealt Int No
totalDamageDealtToChampions Int No
totalDamageShieldedOnTeammates Int No
totalDamageTaken Int No
totalHeal Int No
totalHealsOnTeammates Int No
totalMinionsKilled Int No
totalTimeCCDealt Int No
totalTimeSpentDead Int No
totalUnitsHealed Int No
tripleKills Int No
trueDamageDealt Int No
trueDamageDealtToChampions Int No
trueDamageTaken Int No
turretsKilled Int No
turretTakedowns Int No
turretsLost Int No
unrealKills Int No
visionScore Int No
visionWardsBoughtInGame Int No
wardsKilled Int No
wardsPlaced Int No

PlayerEndOfGameStatMinAggregateOutputType

Name Type Nullable
id String No
playerId String No
gameId String No
perksId String No
itemsId String No
assists Int No
baronKills Int No
bountyLevel Int No
championExperience Int No
championLevel Int No
championId Int No
championName String No
championTransform Int No
consumablesPurchased Int No
damageDealtToBuildings Int No
damageDealtToObjectives Int No
damageDealtToTurrets Int No
damageSelfMitigated Int No
deaths Int No
detectorWardsPlaced Int No
doubleKills Int No
dragonKills Int No
firstBlood Boolean No
firstBloodAssist Boolean No
firstTowerKill Boolean No
firstTowerAssist Boolean No
gameEndedInEarlySurrender Boolean No
gameEndedInSurrender Boolean No
goldEarned Int No
goldSpent Int No
individualPosition String No
inhibitorKills Int No
inhibitorTakedowns Int No
inhibitorsLost Int No
item0 Int No
item1 Int No
item2 Int No
item3 Int No
item4 Int No
item5 Int No
item6 Int No
itemsPurchased Int No
killingSprees Int No
kills Int No
lane String No
largestCriticalStrike Int No
largestKillingSpree Int No
largestMultiKill Int No
longestTimeSpentLiving Int No
magicDamageDealt Int No
magicDamageDealtToChampions Int No
magicDamageTaken Int No
neutralMinionsKilled Int No
nexusKills Int No
nexusLost Int No
nexusTakedowns Int No
objectivesStolen Int No
objectivesStolenAssists Int No
participantId Int No
pentaKills Int No
physicalDamageDealt Int No
physicalDamageDealtToChampions Int No
physicalDamageTaken Int No
quadraKills Int No
riotIdName String No
riotIdTagline String No
role String No
sightWardsBoughtInGame Int No
spell1Casts Int No
spell2Casts Int No
spell3Casts Int No
spell4Casts Int No
summoner1Casts Int No
summoner1Id Int No
summoner2Casts Int No
summoner2Id Int No
summonerLevel Int No
summonerName String No
teamEarlySurrendered Boolean No
teamId Int No
teamPosition String No
timeCCingOthers Int No
timePlayed Int No
totalDamageDealt Int No
totalDamageDealtToChampions Int No
totalDamageShieldedOnTeammates Int No
totalDamageTaken Int No
totalHeal Int No
totalHealsOnTeammates Int No
totalMinionsKilled Int No
totalTimeCCDealt Int No
totalTimeSpentDead Int No
totalUnitsHealed Int No
tripleKills Int No
trueDamageDealt Int No
trueDamageDealtToChampions Int No
trueDamageTaken Int No
turretsKilled Int No
turretTakedowns Int No
turretsLost Int No
unrealKills Int No
visionScore Int No
visionWardsBoughtInGame Int No
wardsKilled Int No
wardsPlaced Int No
win Boolean No

PlayerEndOfGameStatMaxAggregateOutputType

Name Type Nullable
id String No
playerId String No
gameId String No
perksId String No
itemsId String No
assists Int No
baronKills Int No
bountyLevel Int No
championExperience Int No
championLevel Int No
championId Int No
championName String No
championTransform Int No
consumablesPurchased Int No
damageDealtToBuildings Int No
damageDealtToObjectives Int No
damageDealtToTurrets Int No
damageSelfMitigated Int No
deaths Int No
detectorWardsPlaced Int No
doubleKills Int No
dragonKills Int No
firstBlood Boolean No
firstBloodAssist Boolean No
firstTowerKill Boolean No
firstTowerAssist Boolean No
gameEndedInEarlySurrender Boolean No
gameEndedInSurrender Boolean No
goldEarned Int No
goldSpent Int No
individualPosition String No
inhibitorKills Int No
inhibitorTakedowns Int No
inhibitorsLost Int No
item0 Int No
item1 Int No
item2 Int No
item3 Int No
item4 Int No
item5 Int No
item6 Int No
itemsPurchased Int No
killingSprees Int No
kills Int No
lane String No
largestCriticalStrike Int No
largestKillingSpree Int No
largestMultiKill Int No
longestTimeSpentLiving Int No
magicDamageDealt Int No
magicDamageDealtToChampions Int No
magicDamageTaken Int No
neutralMinionsKilled Int No
nexusKills Int No
nexusLost Int No
nexusTakedowns Int No
objectivesStolen Int No
objectivesStolenAssists Int No
participantId Int No
pentaKills Int No
physicalDamageDealt Int No
physicalDamageDealtToChampions Int No
physicalDamageTaken Int No
quadraKills Int No
riotIdName String No
riotIdTagline String No
role String No
sightWardsBoughtInGame Int No
spell1Casts Int No
spell2Casts Int No
spell3Casts Int No
spell4Casts Int No
summoner1Casts Int No
summoner1Id Int No
summoner2Casts Int No
summoner2Id Int No
summonerLevel Int No
summonerName String No
teamEarlySurrendered Boolean No
teamId Int No
teamPosition String No
timeCCingOthers Int No
timePlayed Int No
totalDamageDealt Int No
totalDamageDealtToChampions Int No
totalDamageShieldedOnTeammates Int No
totalDamageTaken Int No
totalHeal Int No
totalHealsOnTeammates Int No
totalMinionsKilled Int No
totalTimeCCDealt Int No
totalTimeSpentDead Int No
totalUnitsHealed Int No
tripleKills Int No
trueDamageDealt Int No
trueDamageDealtToChampions Int No
trueDamageTaken Int No
turretsKilled Int No
turretTakedowns Int No
turretsLost Int No
unrealKills Int No
visionScore Int No
visionWardsBoughtInGame Int No
wardsKilled Int No
wardsPlaced Int No
win Boolean No

PlayerItemCountOutputType

Name Type Nullable
playerEndOfGameStat Int Yes

PlayerItemCountAggregateOutputType

Name Type Nullable
id Int Yes
slot Int Yes
itemId Int Yes
name Int Yes
_all Int Yes

PlayerItemAvgAggregateOutputType

Name Type Nullable
slot Float No
itemId Float No

PlayerItemSumAggregateOutputType

Name Type Nullable
slot Int No
itemId Int No

PlayerItemMinAggregateOutputType

Name Type Nullable
id String No
slot Int No
itemId Int No
name String No

PlayerItemMaxAggregateOutputType

Name Type Nullable
id String No
slot Int No
itemId Int No
name String No

PlayerItemEventCountOutputType

Name Type Nullable
player Int Yes

PlayerItemEventCountAggregateOutputType

Name Type Nullable
id Int Yes
type Int Yes
itemId Int Yes
name Int Yes
undoId Int Yes
_all Int Yes

PlayerItemEventAvgAggregateOutputType

Name Type Nullable
itemId Float No
undoId Float No

PlayerItemEventSumAggregateOutputType

Name Type Nullable
itemId Int No
undoId Int No

PlayerItemEventMinAggregateOutputType

Name Type Nullable
id String No
type String No
itemId Int No
name String No
undoId Int No

PlayerItemEventMaxAggregateOutputType

Name Type Nullable
id String No
type String No
itemId Int No
name String No
undoId Int No

PlayerKillCountOutputType

Name Type Nullable
killer Int Yes
victim Int Yes

PlayerKillCountAggregateOutputType

Name Type Nullable
id Int Yes
_all Int Yes

PlayerKillMinAggregateOutputType

Name Type Nullable
id String No

PlayerKillMaxAggregateOutputType

Name Type Nullable
id String No

PlayerRuneCountOutputType

Name Type Nullable
runeStyle Int Yes

PlayerRuneCountAggregateOutputType

Name Type Nullable
id Int Yes
defense Int Yes
flex Int Yes
offense Int Yes
_all Int Yes

PlayerRuneAvgAggregateOutputType

Name Type Nullable
defense Float No
flex Float No
offense Float No

PlayerRuneSumAggregateOutputType

Name Type Nullable
defense Int No
flex Int No
offense Int No

PlayerRuneMinAggregateOutputType

Name Type Nullable
id String No
defense Int No
flex Int No
offense Int No

PlayerRuneMaxAggregateOutputType

Name Type Nullable
id String No
defense Int No
flex Int No
offense Int No

PlayerSkillLevelUpEventCountOutputType

Name Type Nullable
player Int Yes

PlayerSkillLevelUpEventCountAggregateOutputType

Name Type Nullable
id Int Yes
type Int Yes
slot Int Yes
_all Int Yes

PlayerSkillLevelUpEventAvgAggregateOutputType

Name Type Nullable
slot Float No

PlayerSkillLevelUpEventSumAggregateOutputType

Name Type Nullable
slot Int No

PlayerSkillLevelUpEventMinAggregateOutputType

Name Type Nullable
id String No
type String No
slot Int No

PlayerSkillLevelUpEventMaxAggregateOutputType

Name Type Nullable
id String No
type String No
slot Int No

PlayerSnapshotCountOutputType

Name Type Nullable
position Int Yes
player Int Yes

PlayerSnapshotCountAggregateOutputType

Name Type Nullable
id Int Yes
timestamp Int Yes
currentGold Int Yes
totalGold Int Yes
totalGoldDiff Int Yes
xp Int Yes
xpDiff Int Yes
level Int Yes
cs Int Yes
csDiff Int Yes
monstersKilled Int Yes
monstersKilledDiff Int Yes
_all Int Yes

PlayerSnapshotAvgAggregateOutputType

Name Type Nullable
timestamp Float No
currentGold Float No
totalGold Float No
totalGoldDiff Float No
xp Float No
xpDiff Float No
level Float No
cs Float No
csDiff Float No
monstersKilled Float No
monstersKilledDiff Float No

PlayerSnapshotSumAggregateOutputType

Name Type Nullable
timestamp Float No
currentGold Int No
totalGold Int No
totalGoldDiff Int No
xp Int No
xpDiff Int No
level Int No
cs Int No
csDiff Int No
monstersKilled Int No
monstersKilledDiff Int No

PlayerSnapshotMinAggregateOutputType

Name Type Nullable
id String No
timestamp Float No
currentGold Int No
totalGold Int No
totalGoldDiff Int No
xp Int No
xpDiff Int No
level Int No
cs Int No
csDiff Int No
monstersKilled Int No
monstersKilledDiff Int No

PlayerSnapshotMaxAggregateOutputType

Name Type Nullable
id String No
timestamp Float No
currentGold Int No
totalGold Int No
totalGoldDiff Int No
xp Int No
xpDiff Int No
level Int No
cs Int No
csDiff Int No
monstersKilled Int No
monstersKilledDiff Int No

PlayerWardEventCountOutputType

Name Type Nullable
player Int Yes

PlayerWardEventCountAggregateOutputType

Name Type Nullable
id Int Yes
type Int Yes
wardType Int Yes
_all Int Yes

PlayerWardEventMinAggregateOutputType

Name Type Nullable
id String No
type String No
wardType PlayerWardEventWardTypeType No

PlayerWardEventMaxAggregateOutputType

Name Type Nullable
id String No
type String No
wardType PlayerWardEventWardTypeType No

PositionCountOutputType

Name Type Nullable
event Int Yes
playerSnapshot Int Yes

PositionCountAggregateOutputType

Name Type Nullable
id Int Yes
x Int Yes
y Int Yes
_all Int Yes

PositionAvgAggregateOutputType

Name Type Nullable
x Float No
y Float No

PositionSumAggregateOutputType

Name Type Nullable
x Int No
y Int No

PositionMinAggregateOutputType

Name Type Nullable
id String No
x Int No
y Int No

PositionMaxAggregateOutputType

Name Type Nullable
id String No
x Int No
y Int No

ProfileCountOutputType

Name Type Nullable
activity Int Yes
championWinrate Int Yes
duos Int Yes

ProfileCountAggregateOutputType

Name Type Nullable
id Int Yes
update Int Yes
lastUpdate Int Yes
kills Int Yes
deaths Int Yes
assists Int Yes
kda Int Yes
winRate Int Yes
csPerMinute Int Yes
damagePerMinute Int Yes
killsPerMinute Int Yes
goldPerMinute Int Yes
averageGameTime Int Yes
averageTimeSpentDead Int Yes
totalGameTime Int Yes
_all Int Yes

ProfileAvgAggregateOutputType

Name Type Nullable
kills Float No
deaths Float No
assists Float No

ProfileSumAggregateOutputType

Name Type Nullable
kills Int No
deaths Int No
assists Int No

ProfileMinAggregateOutputType

Name Type Nullable
id String No
update Boolean No
lastUpdate DateTime No
kills Int No
deaths Int No
assists Int No
kda String No
winRate String No
csPerMinute String No
damagePerMinute String No
killsPerMinute String No
goldPerMinute String No
averageGameTime String No
averageTimeSpentDead String No
totalGameTime String No

ProfileMaxAggregateOutputType

Name Type Nullable
id String No
update Boolean No
lastUpdate DateTime No
kills Int No
deaths Int No
assists Int No
kda String No
winRate String No
csPerMinute String No
damagePerMinute String No
killsPerMinute String No
goldPerMinute String No
averageGameTime String No
averageTimeSpentDead String No
totalGameTime String No

SeedIdentifierCountAggregateOutputType

Name Type Nullable
id Int Yes
identifier Int Yes
type Int Yes
timestamp Int Yes
priority Int Yes
retrieved Int Yes
_all Int Yes

SeedIdentifierMinAggregateOutputType

Name Type Nullable
id String No
identifier String No
type String No
timestamp DateTime No
priority Boolean No
retrieved Boolean No

SeedIdentifierMaxAggregateOutputType

Name Type Nullable
id String No
identifier String No
type String No
timestamp DateTime No
priority Boolean No
retrieved Boolean No

SourceCountOutputType

Name Type Nullable
game Int Yes

SourceCountAggregateOutputType

Name Type Nullable
id Int Yes
api Int Yes
_all Int Yes

SourceMinAggregateOutputType

Name Type Nullable
id String No
api String No

SourceMaxAggregateOutputType

Name Type Nullable
id String No
api String No

TeamCountOutputType

Name Type Nullable
pickBan Int Yes
players Int Yes
objectives Int Yes
from_Game_blueTeam Int Yes
from_Game_redTeam Int Yes

TeamCountAggregateOutputType

Name Type Nullable
id Int Yes
gameId Int Yes
teamId Int Yes
teamMatchId Int Yes
win Int Yes
_all Int Yes

TeamAvgAggregateOutputType

Name Type Nullable
teamId Float No

TeamSumAggregateOutputType

Name Type Nullable
teamId Int No

TeamMinAggregateOutputType

Name Type Nullable
id String No
gameId String No
teamId Int No
teamMatchId String No
win Boolean No

TeamMaxAggregateOutputType

Name Type Nullable
id String No
gameId String No
teamId Int No
teamMatchId String No
win Boolean No

TeamBuildingKillCountOutputType

Name Type Nullable
killer Int Yes

TeamBuildingKillCountAggregateOutputType

Name Type Nullable
id Int Yes
type Int Yes
lane Int Yes
side Int Yes
towerLocation Int Yes
_all Int Yes

TeamBuildingKillMinAggregateOutputType

Name Type Nullable
id String No
type String No
lane String No
side String No
towerLocation String No

TeamBuildingKillMaxAggregateOutputType

Name Type Nullable
id String No
type String No
lane String No
side String No
towerLocation String No

TeamMonsterKillCountOutputType

Name Type Nullable
killer Int Yes

TeamMonsterKillCountAggregateOutputType

Name Type Nullable
id Int Yes
type Int Yes
subType Int Yes
_all Int Yes

TeamMonsterKillMinAggregateOutputType

Name Type Nullable
id String No
type String No
subType String No

TeamMonsterKillMaxAggregateOutputType

Name Type Nullable
id String No
type String No
subType String No

RuneSelectionCountAggregateOutputType

Name Type Nullable
id Int Yes
runeStyleId Int Yes
perk Int Yes
var1 Int Yes
var2 Int Yes
var3 Int Yes
_all Int Yes

RuneSelectionAvgAggregateOutputType

Name Type Nullable
perk Float No
var1 Float No
var2 Float No
var3 Float No

RuneSelectionSumAggregateOutputType

Name Type Nullable
perk Int No
var1 Int No
var2 Int No
var3 Int No

RuneSelectionMinAggregateOutputType

Name Type Nullable
id String No
runeStyleId String No
perk Int No
var1 Int No
var2 Int No
var3 Int No

RuneSelectionMaxAggregateOutputType

Name Type Nullable
id String No
runeStyleId String No
perk Int No
var1 Int No
var2 Int No
var3 Int No

RuneStyleCountOutputType

Name Type Nullable
selection Int Yes

RuneStyleCountAggregateOutputType

Name Type Nullable
id Int Yes
playerRunesId Int Yes
description Int Yes
style Int Yes
_all Int Yes

RuneStyleAvgAggregateOutputType

Name Type Nullable
style Float No

RuneStyleSumAggregateOutputType

Name Type Nullable
style Int No

RuneStyleMinAggregateOutputType

Name Type Nullable
id String No
playerRunesId String No
description String No
style Int No

RuneStyleMaxAggregateOutputType

Name Type Nullable
id String No
playerRunesId String No
description String No
style Int No